﻿function popwin(id,kuang,gao) {	    
	newWindow = window.open("","pic","height="+gao+",width="+kuang+",top=100,left=150,scrollbars=no,status=no,toolbar=no,menubar=no,location=no");

	newWindow.document.open();
	newWindow.document.write('<html><title>PIC</title><head></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">'); 
	newWindow.document.write('<div align="center"><img src=cp/'+id+' width='+kuang+' height='+gao+'></div>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function popvideo(id) {	    
   var newwin=window.open(id,"video","height=330,width=360,top=100,left=170,scrollbars=no,status=no,toolbar=no,menubar=no,location=no");
   newwin.focus();
}
