function new_window(url, width, height)
{
	
	if(width > 0 && height > 0)
	{
		
		var Fleft = (screen.width - width)/2;
		var Ftop = (screen.height - height)/2;
		
		var w = window.open(url, 'popUp', 'width=' + width + ', height=' + height + ', toolbar=0, location=0, status=0, menubar=0, scrollbars=0, resizable=0, top=' + Ftop + ', left=' + Fleft);
	}
	else var w = window.open(url, 'popUp', 'toolbar=0, location=0, status=0, menubar=0, scrollbars=0, resizable=0, top=' + Ftop + ', left=' + Fleft);
	w.focus();
			w.document.write('<body style="background:#ffffff;" topmargin=0 bottommargin=0 rightmargin=0 leftmargin=0 marginwidth=0 marginheight=0>');
			w.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td ><a href="#" onClick="javascript:self.close()"><img src="'+url+'" border=0></a></td></tr></table>');
	if(w) return false;
	else return true;
}

