

function PostTo(toPage){
	//change page action tag to point to another page
	//to avoid true asp.net postback
	//"To Page" needs to have page directive EnableViewStateMac = "False"
	document.forms[0].action = toPage;
	//submit form
	document.forms[0].submit();
	
	return false;
}

function popupPasswordEmailer(filename)
{
	window.open(filename,'EmailPassword','top=50px,left=50px,width=500px,height=150px,toolbar=no,resizable=yes,menubar=no,location=no,status=yes,directories=no,scrollbars=yes')
}

function noImage150x150(objImage)
{
	objImage.src = 'http://webnutritionstore.com/prodpics/nopic.jpg';
	objImage.width='150'; 
	objImage.height='150';
	objImage.style.width = 150;
	objImage.style.height = 150;
}

function noImage75x75(objImage)
{
	objImage.src = 'http://webnutritionstore.com/prodpics/nopic_75x75.jpg';
	objImage.width='75'; 
	objImage.height='75';
	objImage.style.width = 75;
	objImage.style.height = 75;	
}