// JavaScript Document

function showPic (whichpic) {
	if (document.getElementById) {
  		document.getElementById('placeholder').src = whichpic.href + ".jpg";
		document.getElementById('desc').src = whichpic.href + "_desc.gif";
  	return false;
 	} else {
  	return true;
 	}
}

function rollover(name,over)
{
	if(window.document.images) 
	{
		if (over)
			window.document.images[name].src = "i/" + name + "O.gif";
		else
			window.document.images[name].src = "i/" + name + ".gif";
	}
}

function load(url,height,width) {
	var load = window.open(url,'Download','scrollbars=no,menubar=no,height=' + height + ',width=' + width + ',resizable=no,toolbar=no,location=no,status=no');
}

function focusIn() {
	document.getElementById("theForm").Products.focus();
}
