function imageView(imgFile,imgTitle,winWidth,winHeight,winPosX,winPosY){
newWin = window.open("","","resizable=1,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,width="+winWidth+",height="+winHeight+",left="+winPosX+",top="+winPosY+"");
newWin.document.write('<html><head><title>'+imgTitle+'<\/title><link rel="stylesheet" href="style.css" type="text/css"/><\/head>'
+'<body onBlur="self.focus();" marginWidth="0" marginHeight="0" topmargin="0" leftmargin="0">'
+'<center>'
+'<img border="0" alt="Image loading please wait...." src="'+imgFile+'"><br><br><font color="#771C12" size="3"><b>'+imgTitle+'</b></font>'
+'<\/center>'
+'<\/body><\/html>');
newWin.document.close();
};

