 
	function showPic(strLink,strName,numWidth,numHeight){
		var newWin=window.open('',strName,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+numWidth+',height='+numHeight+',left='+Math.max(parseInt((screen.width-numWidth)/2),0)+',top='+Math.max(parseInt((screen.height-numHeight)/3),0));
		newWin.document.open();
		var strHTML="<html>"+
					"<head><style type=\"text/css\">"+
					" body {background-image: url('"+strLink+"');background-repeat:no-repeat}"+
					"</style></head><body bgcolor=\"#E0E0E0\"></body></html>";
		newWin.document.writeln(strHTML);
		newWin.document.close();
		newWin.focus();
		return false;
	}
