function prodManContact(mf) {
 cWin = window.open('contactprodmgr.cfm?m=' + mf,'cWin','toolbar=no,status=no,width=350,height=220,directories=no,scrollbars=no,location=no,resize=no,menubar=no');
 cWin.focus();
}

function getStyleObject(objectId) {
    // cross-browser function to get an object's style object given its id
    if(document.getElementById && document.getElementById(objectId)) {
	// W3C DOM
	return document.getElementById(objectId).style;
    } else if (document.all && document.all(objectId)) {
	// MSIE 4 DOM
	return document.all(objectId).style;
    } else if (document.layers && document.layers[objectId]) {
	// NN 4 DOM.. note: this won't find nested layers
	return document.layers[objectId];
    } else {
	return false;
    }
} // getStyleObject


function showSrch() {
	theBox = document.getElementById('srchBox');
	theContents = document.getElementById('srchBoxContents');
	theBox.style.display = 'block';
	var targW = 175;
	var targH = 105;
	var speed = 10;
	
	var aspect = targW / targH;
	var the_style = getStyleObject('srchBox');
	
	var currH = parseInt(the_style.height);
	var currW = parseInt(the_style.width)
	var nextH = currH + speed;
	var nextW = currW + parseInt(speed * aspect);
	
	if (!document.layers) {
		nextW = nextW + 'px';
		nextH = nextH + 'px';
	}
	
	if(currW < targW || currH < targH) {
		if(currW < targW)
			the_style.width = nextW;
		if(currH < targH)
			the_style.height = nextH;
			
		setTimeout("showSrch();",10);
	} else {
		theContents.style.display = 'block';
	}

}

/* "Please Wait" Page Loading Display: -------------------------------------- */
function overlay() {
	el = document.getElementById("overlay");
	el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
}


function n() {
	var x = 1;
}