function ChangeInnerHTML(id,content) {
	document.getElementById(id).innerHTML = content;
}

function DeleteRememberLogin(f) {
	if (getCookie("rememberLogin") == 1)
		f.password.value='';

	deleteCookie("rememberLogin","","."+window.location.hostname.replace("www.",""));
	deleteCookie("password","","."+window.location.hostname.replace("www.",""));
}

function SelectField(f) {
	if (f) {
		f.select();
		f.focus();
	}
}

function SetSiteWidth() {
	if (screen.width <= 1000) {
		document.getElementById('tbl0').style.width='100%';
		document.getElementById('td0').className='td0';
  }
}