function popup(url, name, width, height, left, top, centered, scrollbars, statusbar, menubars, locbar, resizable)
{
	var parms = "copyhistory=no";
	parms += ",scrollbars=" + scrollbars;
	parms += ",status=" + statusbar;
	parms += ",menubar=" + menubars + ",toolbar=" + menubars;
	parms += ",location=" + locbar;
	parms += ",resizable=" + resizable;
	
	var dims = "height=" + height + ",width=" + width;
	if (!centered) dims += ",left=" + left + ",top=" + top;
	
	var win = window.open(url, name, parms + "," + dims);
	if (centered)
	{
		if (window.opera)
			win.moveTo((window.innerWidth - width) / 2, 35);
		else
			win.moveTo((screen.availWidth - width) / 2, (screen.availHeight - height) / 2);
	}
}

function emailLink(email)
{
	email = email.replace(/[*]/, "@");
	location.href = "mailto:" + email;
}

function search(frm, fldName)
{
	var fld = frm.elements[fldName];
	if (fld.value.length == 0)
	{
		alert("You must type a search query to continue.");
		fld.focus();
		return;
	}
	
	fld.value = escape(fld.value);
	frm.submit();
}

function toggleDiv(did, lid)
{
	var div = null, link = null;
	if (document.getElementById)
	{
		div = document.getElementById(did);
		link = document.getElementById(lid);
	}
	else if (document.all)
	{
		div = document.all[did];
		link = document.all[lid];
	}
	
	if (div)
	{
		if (div.style.display == "none")
		{
			div.style.display = "block";
			link.innerHTML = "Click Here to Hide Products";
		}
		else
		{
			div.style.display = "none";
			link.innerHTML = "Click Here to View Products";
		}
	}
}

si_preload("/menu-images/", ["top-carpet-on.jpg", "top-support-on.jpg", "top-mattress-on.jpg", "top-furniture-on.jpg", "top-drapery-on.jpg", "top-laminate-on.jpg", "top-roofing-on.jpg", "top-contacts-on.jpg", "hotels-on.jpg", "office-on.jpg", "cruise-on.jpg", "college-on.jpg", "restaurants-on.jpg", "bottom-carpet-on.jpg", "bottom-support-on.jpg", "bottom-mattress-on.jpg", "bottom-furniture-on.jpg", "bottom-drapery-on.jpg", "bottom-laminate-on.jpg", "bottom-roofing-on.jpg"]);