var iamfocused = false;

function onKeyPress (e) {
var keycode;
if (window.event) {keycode = window.event.keyCode}  // IE
else if (e) {keycode = e.which};  // Netscape
if (keycode == 13 && iamfocused) {
vip_login();
}
}
if (document.layers) document.captureEvents(Event.KEYPRESS);
document.onkeypress = onKeyPress;  // note capitalisation


function set_focus(){
	
	iamfocused = true;
}



function release_focus(){
	
	iamfocused = false;
}
