// JavaScript Document

	function AddToBookmarks(url,title){ 
		if(document.all){
			window.external.AddFavorite(url,title); 
		}else if(window.sidebar){
			window.sidebar.addPanel(title, url, "")
		}
	} 
	
	
	function launchTAndC(){



		var w					=		510;
		var h					=		560;
		var scrW			=		((screen.width - w) / 2);
		var scrH			=		((screen.height - h) / 2);             
	
		tAndCWin			=		window.open(
											'../about/terms_and_conditions_popup.asp', 
											'tAndC',
											'menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,width=' + w + ',height=' + h + ',left=' + scrW + ',top=' + scrH + ''
											)
	
		if(parseInt(navigator.appVersion) >= 4)	{
			setTimeout('tAndCWin.focus();',150);
		}
	}
	

	clearLoginField = function(){
		if(document.forms["LogIn1"].Email.value=="Email:"){
			document.forms["LogIn1"].Email.value = "";
		};
		if(document.forms["LogIn1"].Password.value=="Password:"){
			document.forms["LogIn1"].Password.value = "";
		};
	};
	
	resetLoginField = function(){
		if(document.forms["LogIn1"].Email.value==""){
			document.forms["LogIn1"].Email.value = "Email:";
		};
		if(document.forms["LogIn1"].Password.value==""){
			document.forms["LogIn1"].Password.value = "Password:";
		};
	};






	
	
