

function openWin2(URL, vTitle, vImage, W, H) {
newWindow = window.open(URL,"nWindow","menubar=no,scrollbars=no,resizable=yes,width="+W+",height="+H+",toolbar=no,status=no"); 
newWindow.document.write('<html><head><title>' + vTitle + '</title></head>');
newWindow.document.write('<body>');
newWindow.document.write('<div align="center"><a href="javascript:this.close()"><img src="/lib/photos/' +vImage+ ' " alt='+vTitle+' border="0"></a></div>');
newWindow.document.write('<div align="center"><div style="font-size: 11px;">' + vTitle + '</div></div>');
newWindow.document.write('<div align="center" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold;"><a href="javascript:this.close()" class="bodyText">Close Window</a></div>');
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}


function mAddress(user) {
    locationstring = "mailto:" + user + "@" + "coldcreekcabin.com";
    window.location = locationstring;
  }
  


