//<!---

function goto_URL(object) {
	window.location.href = object.options[object.selectedIndex].value;
}

function goto_URL_home_page(object) {
	var message = "Click OK to make this your default Verbatim home page.";
	var yon = window.confirm(message);
	
	var SetCookieUrl
	var NoCookieUrl
	
	SetCookieUrl = object.options[object.selectedIndex].value + "&SetCookie=YES";
	NoCookieUrl = object.options[object.selectedIndex].value+ "&NoCookie=YES";
	
	if (yon == 1)
		{
		window.location.href = SetCookieUrl;
		}
	else
		{
		window.location.href = NoCookieUrl;
		}
}

function goto_URL_home_page_map(thisValue) {
	var message = "Click OK to make this your default Verbatim home page.";
	var yon = window.confirm(message);
	
	var SetCookieUrl
	var NoCookieUrl
	
	SetCookieUrl = thisValue + "&SetCookie=YES";
	NoCookieUrl = thisValue+ "&NoCookie=YES";
	
	if (yon == 1)
		{
		window.location.href = SetCookieUrl;
		}
	else
		{
		window.location.href = NoCookieUrl;
		}
}

function popUpSignUpThanks(url) {
   winStats='toolbar=no,location=no,directories=no,menubar=no,'
   winStats+='scrollbars=yes,width=320,height=400'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=125,top=125'
    }else{
      winStats+=',screenX=125,screenY=125'
    }
   teaseWin=window.open(url,"",winStats)
}

function popUpUSB(url) {
   winStats='toolbar=no,location=no,directories=no,menubar=no,'
   winStats+='scrollbars=no,width=725,height=253'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=25,top=25'
    }else{
      winStats+=',screenX=25,screenY=25'
    }
   teaseWin=window.open(url,"",winStats)
	window.location= "products/product_detail.cfm?product_id=06F4C3FE-18DD-49D3-BDBFD98E4ADB87A1&pc_parent=B0733EA6-8EC0-45D8-A2D2583CDBCAF4D4";
}


function signup_window() {
	window.open("signup.htm","newwindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=250,height=150");//430 //475
}

//--->