/* 
 * Intended as a small JS code library. Code hijacked from other larger libraries and custom JS that Kaz uses
 * in allot of places on our sites should go here. 
 **************************************************/

/*
 * toggle the display property of an element
 */
function toggle(element) {
	document.getElementById(element).style.display = (document.getElementById(element).style.display == "none") ? "" : "none";
	//if the element toggleing is the shipping info container, check again if the address is the same
	if(element == 'shippingInfoTable' && document.getElementById(element).style.display == "none") {
		checksame();
	}
}
/*
 * open a popup window
 */
function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
	return false;
}
