﻿function JumpToIt(list) {
    var newPage = list.options[list.selectedIndex].value
    if (newPage != "None") {
        location.href=newPage
    }
}
function loadWin(url2) {
var loadWin = window.open(url2,'','scrollbars=yes,menubar=no,height=600,width=635,resizable=yes,toolbar=no,location=no,status=no');
}
function openPopupWindow(url,w,h,name){
	var str = 'height=' + h + ', width=' + w + ', top=0, left=0, toolbar=0, menubar=1, scrollbars=1, resizable=1,location=0, status=1';
	var win=window.open(url,name,str);
	if (win=="undefined" || win==null)
	    alert("Your browser is having pop-up blocker, you have to allow the pop-ups to use our website");		
}
function openPopupWindow2(url,w,h,name){
	var str = 'height=' + h + ', width=' + w + ', top=0, left=0, toolbar=0, menubar=0, scrollbars=1, resizable=0,location=0, status=0';
	var win=window.open(url,name,str);
	if (win=="undefined" || win==null)
	    alert("Your browser is having pop-up blocker, you have to allow the pop-ups to use our website");		
}
function display(myimage) {
 aspx = "<html><HEAD>" + "<title>Map</title>" +
    "<link href='../hsr.css' rel='stylesheet' type='text/css'>" 
	+ "</HEAD><BODY><CENTER>" +
	"<table><tr><td><img src='../img/common/spacer.gif' alt='-' width='8' height='8'></td></tr>" +
    "<tr><td align='center'>" +
  "<span class='code_hdr'><strong>Map to WLAW LLC</strong></span><br><IMG SRC='" + myimage + "' class='galleryPic' BORDER=3 NAME=image " +
  "onload='window.resizeTo(document.image.width+40,document.image.height+120)'><br><br>" + 
  "<table width='280' border='0' cellspacing='0' cellpadding='0'><tr><td width='50%' align='left' valign='top'><span class='link'>" +
  "<a class='link' href='javascript:window.print();'>print map</a></span></td> " +
  "<td width='50%' align='right' valign='top'><span class='link'><a class='link' href='javascript:window.close();'>close window</a></span></td></tr></table>" +
  "</td></tr></table>" +
  "</CENTER></BODY></html>";
 popup=window.open
   ('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,titlebar=0');
 popup.document.open();
 popup.document.write(aspx);
 popup.window.focus();
 popup.document.close();
 }
