﻿function GallerySmall_onMouseOver(location, name)
{
    var oImage = document.getElementById("ctl00_ContentPlaceHolder1_imgMedium");
    oImage.src = location + name;
}

function BeforeAfterSmall_onMouseOver(ctl, location, name)
{
 var oImage = document.getElementById(ctl);
    oImage.src = location + name;
}

function PrintMap()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=650, height=400, left=100, top=25"; 
  var content_vlue = document.getElementById("print_content").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>Glow Masters</title>'); 
   docprint.document.write('</head><body onLoad="self.print()"><center>');          
   docprint.document.write(content_vlue);          
   docprint.document.write('</center></body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}