// JavaScript Document


function openWindow(url,w,h) {
  popupWin = window.open(url,'remote','menubar=yes,toolbar=yes,location=yes,directories=no,status=no,scrollbars=yes,resizable=yes,width='+w+',height='+h+',left=5,top=5')
}

function openPDF(url)
{
	openWindow("pdfs/" + url, 800, 600);
}

function openFullScreen(url) {
  popupWin = window.open(url,'remote','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,fullscreen=yes')
}