// JavaScript Document
<!--
function openWindow(strUrl,strTarget)
{
	var win=null, windowWidth, windowHeight, windowLeft, windowTop;
	
	windowWidth = 720;
	windowHeight = 230;
	
	windowTop = 282;
	windowLeft=((screen.width-windowWidth)/2) - 7;

	settings='width='+windowWidth+',height='+windowHeight+',top='+windowTop+',left='+windowLeft+',scrollbars=1,resizable=0,status=0,location=no,directories=no,menubar=no,toolbar=no';
	
	win = window.open(strUrl,strTarget,settings);

	win.focus();
}
-->