/*
	Sollentuna Kunskapsparken - XHTML, CSS and JavaScript by:
		Johnny Mellgren
		http://www.mellgren.com
*/
self.onload = function init(){
	if (document.getElementById || document.all){
		if (document.forms.length){
			for (var i = 0; i < document.forms.length; i++){
				for (var x = 0; x < document.forms[i].length; x++){
					document.forms[i][x].onfocus = function hasFocus(){
						this.style.backgroundColor = '#eeeeee';
					}
					document.forms[i][x].onblur = function hasBlur(){
						this.style.backgroundColor = '#ffffff';
					}
				}
			}
		}
	}
}

function goAdmin(url){
	features = 'toolbar=0,scrollbars=1,width=765,height=480';
	window.open(url, "", features);
}

