function openLargerImage(input) {
	window.open(input,'image','width=380,height=380,scrollbars=no')
}


function openLocator() {
	var zip = document.getElementById('locator').value;
	window.open('http://www.nearestoutlet.com/cgi-bin/hoist/findhoist.pl?zipcode=' + zip + '','image','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=395,height=425')
}


function openSearch() {
	var searchfor = document.getElementById('search').value;
	window.location.href = "http://www.hoistfitness.com/search.aspx?search=" + searchfor + "";
}

function HFgoToURL() {
	var i, args=HFgoToURL.arguments; document.LPreturnValue = false;
	for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}


function openIntlLocator(input) {
	window.open(input,'locator','width=400,height=500,scrollbars=yes')
}


function openOwnerManual(input) {
	window.open(input)
}


function openBrochure(input) {
	window.open(input)
}


function openLegal(input) {
	window.open(input,'legal','width=380,height=460,scrollbars=yes')
}


function openPage(input) {
	window.open(input,'lrgimage','width=760,height=560,scrollbars=yes')
}


function openSwatches(input) {
	window.open(input,'swatches','width=240,height=360,scrollbars=no')
}


function toggleDisplay(id)
{
    var elem = document.getElementById('d' + id);
    if (elem.style.visibility != 'visible') {
		elem.style.display = 'block';
		elem.style.visibility = 'visible';
		document['toggle' + id].src = "_gfx/toggle_down.gif";
	} 
	else {
		elem.style.display = 'none';
		elem.style.visibility = 'hidden';
		document['toggle' + id].src = "_gfx/toggle_up.gif";
	}
}

