function newWindow ( url, w, h ) {
	t = ( screen.availHeight - h ) / 2;
	l = ( screen.availWidth - w ) / 2;
	winStats = 'toolbar=0,location=no,directories=no,menubar=no,scrollbars=1,status=0,resizable=1,width='+w+',height='+h+', left='+l+',top='+t; 
	adWindow = window.open("","",winStats);
	adWindow.document.writeln("<body topmargin=0 leftmargin=0 onclick='javascript:window.close()'><img src="+url+"></body>");
	adWindow.focus();
}

function newWindow1 ( url, w, h, back ) {
	t = ( screen.availHeight - h ) / 2;
	l = ( screen.availWidth - w ) / 2;
	winStats = 'toolbar=0,location=no,directories=no,menubar=no,scrollbars=1,status=0,resizable=1,width='+w+',height='+h+', left='+l+',top='+t; 
	adWindow = window.open("","",winStats);
	adWindow.document.writeln("<body topmargin=0 leftmargin=0 bgcolor="+back+" onclick='javascript:window.close()'><img src="+url+" align=center></body>");
	adWindow.focus();
}
