<!--
function show360(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01	
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<APPLET height=\"300\" archive=\"ptviewer.jar\" width=\"500\" code=\"ptviewer.class\">');
	newWindow.document.write('<PARAM NAME=file VALUE=\"'+imageName+'\">');
	newWindow.document.write('<PARAM NAME=\"cursor\" VALUE=\"MOVE\">');
	newWindow.document.write('<PARAM NAME=\"pan\" VALUE=\"-105\">');
	newWindow.document.write('<PARAM NAME=\"showToolbar\" VALUE=\"true\">');
	newWindow.document.write('<PARAM NAME=\"auto\"	VALUE=\"0.3\">');
	newWindow.document.write('<PARAM NAME=\"imgLoadFeedback\" VALUE=\"false\">');
	newWindow.document.write('<PARAM NAME=\"quality\" VALUE=\"3\">');
	newWindow.document.write('<PARAM NAME=\"wait\" VALUE=\"design/images/wait.gif\">');
	newWindow.document.write('</APPLET>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//-->
