if (top != self) top.location = self.location;

window.onload = function(){
inp=document.getElementsByTagName("input"); 
for(i=0;i<inp.length;i++){
	if(inp[i].id.indexOf("Email") < 0)
	{
		inp[i].onclick=sel; 
		inp[i].onmousedown=sel; 
		inp[i].onfocus=sel;
	}
}
}
function sel(){
	this.select();
}