<!--
function popwindow(url,strWidth,strHeight,strScroll){
 	w = strWidth;
	h = strHeight;
	pw = parseInt((screen.width-w)/2);
	ph = parseInt((screen.height-h)/2);
  	storywin = window.open(''+ url +'','','width='+ strWidth +',height='+ strHeight +',scrollbars='+ strScroll +',resizable=no,screenX='+ pw +',screenY='+ ph +',left='+ pw +',top='+ ph +''); 

 	if (eval('storywin.focus()')) {
	win.moveTo(pw, ph);
	} 
}
//-->
