// =JavaScript Document= Cart Script 2006.12.8


function get_url(){
	document.ViewForm.view_url.value = location.href;
}

function CartIn(){
	document.ItemForm.submit();
	URL = opener.location.href;
	opener.location.href=URL;
}

function SubmitForm(){
	document.CartForm.submit();
}

function jumpCategory(target,selObj,restore){
	eval(target+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

