
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function openWindow(url) { 
  window.open(url,"EmailPriceList","width=500,height=200");
}	


   function preview(url) {
	  helpWindow=window.open(url,"Preview","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=yes,width=400,height=400");
	}
	
function showDropDown(idname)
{

 var childobj = document.getElementById(idname);
 if (childobj.style.display == "none"){
    childobj.style.display = "block";
 }else {
    childobj.style.display = "none";
 }
}

function validateArea(form) {
if (form.region.selectedIndex == 0) {
	alert("Please select a delivery area!");
	return false;
} else {
	return true;
}
}



function tellFriend(product, baseURL)
{
var url = baseURL + '/send_to_friend.mibiznez?itemid=' + product;
tellWindow = window.open(url, 'tell', ['width=450', 'height=380', 'left=50', 'top=50', 'scrollbars=auto', 'menubar=no', 'resizable=no']);
tellWindow.top.focus();
}

