function sample_popup( url )
{
	var topPos = (screen.height-600)/2;
	if (topPos < 0 ) topPos = 0;
	var leftPos = (screen.width-700)/2;
	if (leftPos < 0) leftPos = 0;
	var newWindow = window.open( url, "Template_Sample", "height=600,width=700,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,top=" + topPos + ",left=" + leftPos );
	if ( newWindow.opener == null )
	{
		newWindow.opener = window;
	}
	newWindow.focus();
}
