//++++++++++++++++++++++++++++++
//+Displays picture in a pop up+
//++++++++++++++++++++++++++++++
var stdOptions2 = "resizable=yes,directories=no,toolbar=no,scrollbars=no";


function PopupPic(sPicURL) { 
	var screenW = screen.availWidth;
	var screenH = screen.availHeight;
	var newWidth = (screenW - 810)/2;
	var newHeight = (screenH - 600)/2;
	var options = stdOptions2 + ",left=" + newWidth + ",top=" + newHeight + ",width=810,height=600";
	window.open( sPicURL, "",options); 
   
   
   } 
   
function PopupService(imageloc) { 
     window.open( "ShowPics.html?"+imageloc, "","resizable=1,directories=no,toolbar=no,scrollbars=no"); 
   }




//++++++++++++++++++++++++++++++++++++++++++++++
//+Displays the privacy statement pop-up window+
//++++++++++++++++++++++++++++++++++++++++++++++
function showPop() {
  PopWin=window.open("window.htm","Privacy","width=475,height=125,resizable=no");
}


