// bhNewZoneWindow.js
/* JavaScript template file for ArcIMS HTML Viewer
***************************************************************************************

Creates a new window for displaying city ordinance information.

***************************************************************************************
*/
function bhNewZoneWindow(ordinanceid,arg) 
 {
OrdinanceWin = window.open("","OrdinanceWindow","width=700,height=530,toolbar=yes,scrollbars=yes,resizable=yes,top=0,left=0");
if (arg == "RA") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Raymond.html" ;
}
if (arg == "DU") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Dunkerton.html" ;
}
if (arg == "CO") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/County.html" ;
}
if (arg == "WA") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Waterloo.html" ;
}
if (arg == "EV") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Evansdale.html" ;
}
if (arg == "ER") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/ElkRunHeights.html" ;
}
if (arg == "GI") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Gilbertville.html" ;
}
if (arg == "CF") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/CedarFalls.html" ;
}
if (arg == "LP") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/LaPorteCity.html" ;
}
if (arg == "JA") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Janesville.html" ;
}
if (arg == "JE") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Jesup.html" ;

}
if (arg == "HU") { 
OrdinanceWin.location =  "http://www2.co.black-hawk.ia.us/website/bhmap/ZoningOrdinances/Hudson.html" ;
}


 } 
	

