////////////////////////////////////////////////////////////
//
// (c) The Web Paving Company Ltd., / The City of Kingston
// PDF window popper
// Last edit: Jan. 25, 2006
//
/////////////
//
function pdfPop(url)
{
  windowWidth = (screen.width - 100);
  windowHeight = (screen.height - 60);
  strResizeState = "yes";
  strScrollState = "yes";
  windowX = 5;
  windowY = 5;
  var random = Math.round(100000*Math.random());
  //
  //
  var strFeatures = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=' + strScrollState + ',resizable=' +  strResizeState + ',width=' + windowWidth + ',height=' + windowHeight;
  //
  PDF=window.open(url, "PDFWindow" + random, strFeatures)
}

if(top.location != location) {
	top.location.href = document.location.href;
}


