//-- Javascript

function updateField( e ) {
	var o = document.getElementById("price");
	o.innerHTML = "$" + e.value + ".00";
}
function DownloadDocument(theForm, documentName) 
{
	with (theForm) 
	{	
		
		window.open("Documents/" + documentName);
		//th=620,height=620,status=yes,toolbar=yes,menubar=no,titlebar=yes,location=yes,resizable=yes,scrollbars=yes");
	}
}
function LoadWebPage(theForm, documentName) 
{
	with (theForm) 
	{	
		
		window.open(documentName,null,"height=580,width=680,status=no,toolbar=no,menubar=no,titlebar=yes,location=no,resizable=yes,scrollbars=yes");
	}
}



function validate(txtUserName,txtPassword)
{
 if (txtUserName=="telus" && txtPassword=="goovor")
 load('vor.html');
 else 
 {
  load('failure.html');
 }
}
function load(url)
{
 location.href=url;
}
