function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=400,left = 490,top = 227');");
}

function changeProduct(targ,selObj,restore){ //v3.0
	eval(targ+".location='cp_inventory.php?edit=new&product_id="+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function changeVendor(targ,selObj,restore){ //v3.0
	eval(targ+".location='/browse/"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function ds_design_search() {
	document.forms.search.submit();
}

window.onload = function() {
	obj = document.getElementById('storefront');

	if (obj) {	
		obj.onchange = function() {
			changeVendor('parent',this,0);
		}
	}
	
	obj = document.getElementById('checkout_button');
	
	if (obj) {	
		obj.onclick = function() {
			window.location='checkout.php';
		}
	}
}
