function winOpen(page){
window.open(page,'front','width='+(screen.width-10)+',height='+(screen.height-60)+",status= no,toolbar = no,location = no, resizable =yes,status= no,titlebar=no,scrollbars=no,fullscreen = no,top = 0,left=0");
}
function openWin(name, winID, w, h,scrlb,loca,resize) {
	screenw = screen.availWidth;
	screenh = screen.availHeight;
		if (w == "screen") {
		ww = screenw-7;
		l=0;
	} else {
		ww = w;
		l=((screenw/2)-(ww/2));
	}
	if (h == "screen") {
		wh = screenh-30;
		t=0;
	} else {
		wh = h;
		t=((screenh/2)-(wh/2));
	}
	winvar = window.open(name, winID, "left="+l+",top="+t+",width="+ww+",height="+wh+",scrollbars="+scrlb+",location="+loca+",resizable="+resize);
	winvar.focus();

}
function popup(name, winID, w, h) {
	screenw = screen.availWidth;
	screenh = screen.availHeight;
	if (w == "screen") {
		ww = screenw-7;
		l=0;
	} else {
		ww = w;
		l=((screenw/2)-(ww/2));
	}
	if (h == "screen") {
		wh = screenh-30;
		t=0;
	} else {
		wh = h;
		t=((screenh/2)-(wh/2));
	}
	winvar = window.open(name, winID, "left="+l+",top="+t+",width="+ww+",height="+wh+",scrollbars=no,status=no,resizable=no,titlebar=no,menubar=no,toolbar=no");
	winvar.focus();
}
function test(){
	alert("jeg er her");
}


