<!--
function OpenWindow(url,width,height,scroll, windowname)
{
//var url
//var width
//var height
//var windowname
var left = (screen.width/2) - (width/2);
var top = (screen.height/2) - (height/2); 
 window.open(url,windowname,"scrollbars="+scroll+",toolbar=no,location=no,directories=no,status=no,left="+left+",top="+top+",width="+width+",height="+height+",resizable=no,menubar=no");
}
//-->
