// JavaScript Document

function onLoader() {
	document.getElementsByName('login').item(0).target = "_blank";
	
	imatrixformuser = document.getElementsByName('USER').item(0);
	imatrixformpass = document.getElementsByName('PIN').item(0);
	
	imatrixformuser.value = 'username';
	imatrixformpass.value = 'password';
	
	imatrixformuser.onfocus = clearForm;
	imatrixformpass.onfocus = clearForm;
}

function clearForm() {
	if(imatrixformuser.value == 'username'){
		imatrixformuser.value = '';
	}
	if(imatrixformpass.value == 'password'){
		imatrixformpass.value = '';		
	}
}