Therefore, my javascript snippet is as follows:
Code: Select all
function showWindowPDF(FileName,name,width,height)
{
var objWindow;
//objWindow = window.open('pdf/'+sFolder+'/'+FileName,name,"menubar=no,scrollbars=yes,width="+width +",height="+height)
objWindow = window.open('pdf/'+FileName,name,"menubar=no,scrollbars=yes,width=800,height=600");
if(objWindow)
objWindow.focus();
}Could someone pls show me how to handle this?
Thanks