var active = 'home';
		
MidX=screen.availWidth/2

MidY=screen.availHeight/2

 

function popup(URL,WIDTH,HEIGHT)

{
   window.open(URL,'popwinBorder','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,top='+(MidY-(HEIGHT/2)-30)+',left='+(MidX-(WIDTH/2))+',width='+WIDTH+',height='+HEIGHT+'');
}
	
function newWin(url, w, h, sb, rs) 
{ 
	window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=' + sb + ',resizable=' + rs + ',top='+(MidY-(h/2)-30)+',left='+(MidX-(w/2))+',width=' + w + ',height=' +  h + '');  
}


