//POPUP WINDOW with Centering : Chaos : Xionix 

//alert("JS Loading");

function popup(doc,wd,ht)
{
  //alert('getting to the Pop-up '+ doc + ':'+wd+':'+ht);
 
 if(window.oWin)window.oWin.close();
 
  var ScrWd=this.screen.width,ScrHt=this.screen.height;
  
  	wide = wd/2; high = ht/2;
	
	BordWd = (ScrWd/2)-wide; BordHt = (ScrHt/2)-high;
	//alert(BordWd+" : BordWd\n"+BordHt+" : BordHt\n"+wide+":"+wd+": wide\n"+high+":"+ht+" : High\n");
	oWin = window.open(doc,"popwin",'width='+wd+',height='+ht+',left='+BordWd+',top='+BordHt+', resizeable=no,scrollbars=no,menubar=no,toolbar=no');
 

}

function scroll_popup(doc,wd,ht)
{
  //alert('getting to the Pop-up '+ doc + ':'+wd+':'+ht);
 
 if(window.oWin)window.oWin.close();
 
  var ScrWd=this.screen.width,ScrHt=this.screen.height;
  
  	wide = wd/2; high = ht/2;
	
	BordWd = (ScrWd/2)-wide; BordHt = (ScrHt/2)-high;
	//alert(BordWd+" : BordWd\n"+BordHt+" : BordHt\n"+wide+":"+wd+": wide\n"+high+":"+ht+" : High\n");
	oWin = window.open(doc,"popwin",'width='+wd+',height='+ht+',left='+BordWd+',top='+BordHt+', resizeable=no,scrollbars=yes,menubar=no,toolbar=no');
 

}
