// JavaScript Document

var PopupWindow = '';

function openPopupWindow(strURL, strName)   
{   
	var strWidth = '';
	var strHeight = '';
	
	strWidth = screen.availHeight - 30;
  strHeight = screen.availWidth - 10;
	
	strURL = "showPDF.php?l="+strURL;
	
  if (!PopupWindow.closed && PopupWindow.location)   
  {   
		PopupWindow.location.href = strURL;   
  }   
  else  
  {   
		PopupWindow = window.open(strURL, strName, "location=no, scrollbars=yes, resizable=yes, toolbar=no, menubar=no, width=" + strWidth + ", height=" + strHeight);   
  }   
  
	PopupWindow.focus()
} 
