
var wnd = '';
function popup(url,width,height){
   	args='top=0,left=0,screenX=0,screenY=0,width='+width+',height='+height+',scrollbars=yes,resizable=no';
	wnd=window.open(url,"Info",args);   
   	wnd.opener=self;
   	wnd.focus();
}
