// JavaScript Document

function strip()
{
	if ((document.search.search_text.value == 'Enter keyword(s) here') || (document.search.search_text.value == 'Enter keyword(s) or product code here'))
	{
		document.search.search_text.value = '';
	}
	document.search.submit();
}

var win=null;
  
function open_window(mypage,myname,w,h,scroll,status,pos){
if(pos=="center"){
  LeftPosition=(screen.width)?(screen.width-w)/2:100;
  TopPosition=(screen.height)?(screen.height-h)/2:100;
}
else if((pos!="center" && pos!="random") || pos==null){
  LeftPosition=0;
  TopPosition=20;
}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status='+status+',menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
}

function toggleMenu(elementID)
{	
	var target = document.getElementById(elementID);

	if (target.style.display == 'none') 
	{
		target.style.display = 'block';
	} 
	else 
	{
		target.style.display = 'none';
	}
}   

function redirectUser()
{
	window.location = "my_account.asp";
}