<!--
function OpenWindow(theWidth, theHeight,otherfeatures,url)
{
	var left= (screen.width-theWidth)/4
	var top= (screen.height-theHeight)/4
	features= "left=" + top + ",top=" + top + ",width=" + theWidth + ",height=" + theHeight + otherfeatures
	MM_openBrWindow(url,'',features)

}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
