function imageView(imgFile,imgTitle,imgWidth,imgHeight,winPosX,winPosY){preview = window.open("","","resizable=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,width="+imgWidth+",height="+imgHeight+",left="+winPosX+",top="+winPosY+"");preview.document.write('<html><head><title>'+imgTitle+'<\/title><\/head>'+'<body onBlur="self.focus();" marginWidth="0" marginHeight="0" topmargin="0" leftmargin="0">'+'<center>'+'<img border="0" alt="Image loading please wait...." src="'+imgFile+'" width="'+imgWidth+'" height="'+imgHeight+'">'+'<\/a><\/center>'+'<\/body><\/html>');preview.document.close();}
