function __openwindow(sPage,sName, nWidth, nHeight,a,b,r) {
	var nLeft=(screen.width / 2) - (nWidth/2);
	var nTop = (screen.height / 2) - (nHeight/2);
	var n=new Date();
	sScrollbars = "no";
	if (a == 1) {
	  sScrollbars = "yes";
	}
	sResize = "no";
	if (b == 1) {
	  sResize = "yes";
	}
	if (sName.length == 0)	{
		sName = 'detail'+n.getTime();
	}

	oObject = window.open(sPage, sName , "toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars="+sScrollbars+", resizable="+sResize+", height="+nHeight+", width="+nWidth+", top="+nTop+", left="+nLeft+",");
   
   if (r == 1) {
	   return oObject;
   } else {
	   return;
   }
   
}