﻿// JScript File
function popitup2(url) {
	newwindow=window.open(level + 'Pages/Email.aspx?PageUrl='+url,'name123','height=120,width=200, scrollbars=no, resizeable = no');
	if (window.focus) {newwindow.focus()}
	return false;
}
function popitup(url) {
	newwindow=window.open(level + 'Pages/PrinterFriendly.aspx?NavID='+url,'name123','height=520,width=700, scrollbars=yes, resizeable = yes');
	if (window.focus) {newwindow.focus()}
	return false;
}
function switchImage(x,z)
{
if (z == "on")
{
var y = document.getElementById(x)
y.src = "http://www.wenzelco.com/graphics/design/" + x + "_on.gif"
}
else
{
var y = document.getElementById(x)
y.src = "http://www.wenzelco.com/graphics/design/" + x + "_off.gif"
}
}
function callSearch()
{
    query = document.getElementById("Navigation_searchbox").value;
    query = query.replace(/ /g, "+");
    query = escape(query);
    url = "http://db1.spiderline.com/exec/search?a=100742&q=" + query;
    location.href = url;
}