// JavaScript Document function openPictureWindow_Fever(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(''+alt+''); if (imageType == "swf"){ newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); }else{ newWindow.document.write('\"'+alt+'\"'); } newWindow.document.write(''); newWindow.document.close(); newWindow.focus(); }