function fnCompose(str1,str2,el) {
  el.href = 'mailto:' + str1 + '@' + str2;
}

function popupwindow(url){
	newwindow = window.open (url, "mywindow", "menubar=1,resizable=1,toolbar=1, location=1, status=1, scrollbars=1, width="+screen.width+", height="+screen.height+"");
	//newwindow.moveTo(0,0);
	//newwindow.resizeTo(screen.width,screen.height);
}

function submitenter(myfield,e)
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;

	if (keycode == 13)
	{
		document.getElementById('aiodjaiod').value='asdj982j39d2i3j3d';
		document.getElementById('user_login').submit();
		return false;
	}
	else
	return true;
}

