//Where to buy popup
function popup() {
	var h_popup=500;
	var H = (screen.height - h_popup) / 2;
	var l_popup=800;
	var L = (screen.width - l_popup) / 2;
	window.open('http://74.205.123.78/dev/locations','','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=800,top="+H+",left="L"');
}

//Jump Menu, using for Photo Showcase right now
function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}