function fnOpenWindow(clientId,sDesc){var obj=document.getElementById(clientId);var WinWidth=655;var WinHeight=495;var WindowParameters="left="+String((screen.width/2)-(WinWidth/2))+",top="+String((screen.height/2)-(WinHeight/2))+",width="+WinWidth+",height="+WinHeight+",tollbars";var oWin=open("",'',WindowParameters);oWin.document.write("<html>");oWin.document.write("<head><title>"+sDesc+"</title></head>");oWin.document.write("<body style='background-color:#F8F0CB; color:#6C4B3D; font-family:Verdana,Arial,Helvetica,sans-serif;'>");oWin.document.write("<img src="+obj.src+" alt='' />");oWin.document.write("</body>");oWin.document.write("</html>");oWin.document.close();return false}