myown = new Array();
look     = new Array();
look[1] = 'toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,titlebar=no,';
look[2] = 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,titlebar=no,';

function onw(path,name,w,h,index){
	myimg = new Image;
	myimg.src = path ;
	
	var rong, cao;
	rong = myimg.width;
	cao = myimg.height;
	//alert(myimg.height);
	if(rong>0 || cao>0)
	{w = rong;
	h = cao ;}
	
	LargeImage = look[index]+'height='.concat(h).concat(',').concat('width=').concat(w).concat(',');
	LargeImage = LargeImage.concat('top=').concat((screen.height - h)/2).concat(',');
	LargeImage = LargeImage.concat('left=').concat((screen.width - w)/2);
	newwin = open('', '_blank', LargeImage);

	newwin.document.writeln('<title>ENPC</title><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
	newwin.document.writeln('<a href="" onClick="window.close(); return false;"><img src="', path, '" alt="', 'Close', '" border=0></a>');
	newwin.document.writeln('</body>');
	
}
