// JavaScript Document
function OpenNormalWindow(page,width,height)
{
//	var myBars='directories=yes,location=yes,menubar=yes,status=yes';
//	myBars+=',titlebar=yes,toolbar=yes';
//	var myOptions='width='+width+'left=0,top=0,height='+height;
//	var myFeatures=myOptions;
//	newWin = open(page,'myOptions',myFeatures);
	newWin = open(page,'_blank','directories=no,location=no,menubar=no,status=yes,titlebar=yes,toolbar=no,width='+width+',height='+height+',left=0,top=0');

}

