
function newwin(width,height,img, title){
	var sizer;
	sizer=window.open('','','left='+(parseInt((screen.availWidth-width)/2)-3)+',top='+(parseInt((screen.availHeight-height)/2)-40)+',width='+width+',height='+height+',status=yes,toolbar=no,menubar=no,resizable=no'); 
	sizer.document.write('<html><head><title>'+title+'</title></head><body bgcolor=#ffffff rightmargin=0 bottommargin=0 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="'+img+'" width="'+width+'" height="'+height+'" /></body></html>');
}
