/*
	Module Name:- Webmaster
	File Name  :- webmaster.js
	Create Date:-6-JUNE-2006
	Intially Create By :- 0017
	Update History:
*/

function frm_login_validate()
{
	with(document.frm_login)
	{
		if(txt_login.value=="")
		{
			alert("Please enter your Affiliate ID");
			txt_login.select();
			txt_login.focus();
			return false;			
		}
	}	
	return true;	
}
function HighlightAll(theField) 
{
	var tempval=eval("document."+theField);
	tempval.focus();
	tempval.select();
	var copytoclip=1;
}
