var outerH = 0;
var crome = 0
var menuHeight = 55;
var ratio = 0;

function sendMail(email){
	window.location.href = "mailto:" + email + "?subject=Spørsmål angående Westerdals";
}
	
function resizeWindow(r){
	ratio = r;
	
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		outerH = window.outerHeight;
		crome = outerH - window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		outerH = document.documentElement.clientHeight;
		window.resizeTo(400, 400);
		crome = 400 - document.documentElement.clientHeight;
		outerH = outerH + crome;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight)) {
		//IE 4 compatible
		outerH = document.body.clientHeight;
		window.resizeTo(400, 400);
		crome = 400 - document.body.clientHeight;
	}
	window.resizeTo(getNewWidth(), outerH);
	window.moveTo(screen.width / 2 - (getNewWidth() / 2), screen.height / 2 - (outerH / 2));
}

function getNewWidth(){
	var w = ((outerH - crome - menuHeight) * ratio) - 30;
	return w;
}

//resizeWindow(1.646203554119548);
