<!--

//Used for feature navigation ---------------------------->
function close_and_go(loc) {
	window.opener.location.href = loc;
	self.close();
}

function showFeature(loc) {
	window.open('/features/' + loc,'Feature_Window','width=650,height=400,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
}

function showPage(loc) {
	window.location.href = loc;
}
	

function newWin(loc) {
	window.open(loc,'new_win','toolbar=1,location=1,status=1,menubar=1,scrollbars=1,resizable=1');
}

function jumpMenu() {
	loc = frm_nav.ddFeatureMenu.value;
	window.open('/features/' + loc,'Feature_Window','width=600,height=400,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
}

//Used for jumping between products

function set_action() {

if (document.product_list.ddProducts.value=='All')
	document.product_list.action = 'product_e.php?category='+document.product_list.category.value;
else
	document.product_list.action = 'product_e.php?prodID='+document.product_list.ddProducts.value;

}

function product_search(form_path,language)
{
	if(language == 'English')
		form_path.action='/search_e.php?search='+form_path.search.value;
	else
		form_path.action='/search_f.php?search='+form_path.search.value;

	form_path.submit();
}

//-->