// reserved for scripts.


// popup variables
var winScrollbars = "yes";
var winToolbar = "no";
var winResizable = "yes";
var winLocation = "no";
var winStatus = "no";


// define height and width as needed for each function: 
var winWidth = "570";
var winHeight = "620";
function ScreenShot(a) {
  window.open(a,"","width="+winWidth+",height="+winHeight+",scrollbars="+winScrollbars+",toolbar="+winToolbar+",resizable="+winResizable+",location="+winLocation+",status="+winStatus);
}



