function popwin(url,name,width,height){
window.name="popup";
window.open(url,name,'width='+width+',height='+height+',location=0,address=0,noresize,resizable=1,toolbar=0,scrollbars=yes');
}

function popimg(type,name,h,w,alt,lpos,tpos) {
	newWindow = window.open("","newWindow","width="+w+",height="+h+",scrollbars=no,left="+lpos+",top="+tpos);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=\"'+name+'\" width='+w+' height='+h+' alt=\"'+alt+'\">'); 	
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}	


