function sendform(event)
{
	if(event.keyCode == 13){
		document.frmlogin.submit();
	}
}
function initiate()
{
	document.frmlogin.username.focus();
}
function openwin(){
	window.open("account_lightbox.htm","","left=250,top=220,scrollbars=auto,resizable=no,width=350,height=60");
}
function conf(str) {
	if(window.confirm("Do You Want To Delete Permanently?")) {
		location.href=str;
	}
}