

function openWin(URL,W,H) {
newWindow =window.open(URL,"nWindow","menubar=no,scrollbars=no,resizable=yes,width="+W+",height="+H+",toolbar=no,status=no"); 
}

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('<style type="text/css"> .bodyText {');
		newWindow.document.write('font-family: Verdana, Arial, Helvetica, sans-serif;');
		newWindow.document.write('font-size: 10px;');
		newWindow.document.write('font-weight: bold;}</style>');
newWindow.document.write('<body>');
newWindow.document.write('<p align="center"><a href="javascript:this.close()"><img src="/lib/images/cabin/' +vImage+ ' " alt='+vTitle+' border="0"></a></p>');
newWindow.document.write('<p align="center"><a href="javascript:this.close()" class="bodyText">Close Window</a></p>');
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}


function mAddress(user, eserver) {
    locationstring = "mailto:" + user + "@" + eserver;
    window.location = locationstring;
  }
