function PopoffWindow(DaURL, orient) {var ItsTheWindow;if (orient == "Horizontal")  {ItsTheWindow = window.open(DaURL,"product","status=no,height=150,width=500,scrollbars=yes,resizable=no,toolbar=0");} else if (orient == "Vertical")  {ItsTheWindow = window.open(DaURL,"kitty","status=no,height=150,width=500,scrolling=no,resizable=no,toolbar=0");}}

function openWin( windowURL, windowName, windowFeatures ) { 
      return window.open( windowURL, windowName, windowFeatures ) ; 
}

function productLogin(productLoginForm) { 
	var newIndex = productLoginForm.productLoginSelect.selectedIndex; 
	if (newIndex == 0) { 
		// alert("Please select a location!"); 
	} else { 
		productURL = productLoginForm.productLoginSelect.options[newIndex].value; 
		window.open(productURL); 
	} 
}

function show(id){
	if (document.getElementById) {
		obj=document.getElementById(id);
		obj.className='show';
		}
}

function hide(id){
	if (document.getElementById) {
		obj=document.getElementById(id);
		obj.className='hide';
		}
}

