function stories(url)
{
 	var testheight;
	popleft = (window.screen.height/2) - 166.666666667;
	poptop = (window.screen.height/2) - 260;
	newwindow2=window.open(url,'name','scrollbars=yes, menubar=no, height=360,width=330,  left = ' + popleft + ' , top = ' + poptop + ' ');
	if (window.focus) {newwindow2.focus()}
	return false;
}

function openLink(theURL){
	
	var myWidth = 205;
	var myHeight = 268;
	var left = (screen.width/2)-(myWidth/2);
	var top = (screen.height/2)-(myHeight/2);
	window.open(theURL,"theNewWindow","width="+myWidth+",height="+myHeight+",left="+left+",top="+top);	
	
	
}

function openLink2(tehURL){
	
	var amyWidth = 490;
	var amyHeight = 565;
	var aleft = (screen.width/2)-(amyWidth/2);
	var atop = (screen.height/2)-(amyHeight/2);
	window.open(tehURL,"tehNewWindow","width="+amyWidth+",height="+amyHeight+",left="+aleft+",top="+atop);	
	
	
}
