// JavaScript Document
// Common JS for All International Sites

// Pop-up Window with No Scrolling
function spawn_window(location, height, width) {
	window.open(location, "thisWindow", "width=" + width + ",height=" + height + ",location=no,menubar=no,resizable=yes");
}

// Scrollable Pop-up Window
function spawn_window_scrollable(location, height, width) {
	window.open(location, "thisWindow", "width=" + width + ",height=" + height + ",location=no,menubar=no,resizable=yes,scrollbars=yes");
}

// Hide Div Layers
function hideLayer(whichLayer) {
	if (document.getElementById) {
		document.getElementById(whichLayer).style.visibility = "hidden";
	}
	else if (document.all) {
		document.all[whichlayer].style.visibility = "hidden";
	}
	else if (document.layers) {
		document.layers[whichLayer].visibility = "hidden";
	}
}

// Show DIV layers
function showLayer(whichLayer) {
	if (document.getElementById) {
		//Standards-compliant.
		document.getElementById(whichLayer).style.visibility = "visible";
	}
	else if (document.all) {
		//Old versions of IE.
		document.all[whichlayer].style.visibility = "visible";
	}
	else if (document.layers) {
		//Netscape 4.
		document.layers[whichLayer].visibility = "visible";
	}
}



//-->
