
//---------------------------------------------------------------------------------------------
// Copyright © 2001-2007 romanlazarev.com
//---------------------------------------------------------------------------------------------

function popup (url,w,h) {
	t = (screen.height/2)-(h); 
	l = (screen.width/2)-(w/2);
	wd = window.open (url, '','location=no,scrollbars=yes,menubar=no,resizable=no,top='+t+',left='+l+',width='+w+',height='+h);
}


//---------------------------------------------------------------------------------------------

