function getheight() {
	var myHeight = 0;
	if( typeof( window.innerHeight ) == 'number' ) {
		myHeight = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) {
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && document.body.clientHeight ) {
		myHeight = document.body.clientHeight;
	}
	myHeight = (myHeight - 330) / 2;
	return myHeight;
}

function compareSizes() {
	var myHeight = 0;
	var myHeight2 = getheight();
	if( typeof( window.innerHeight ) == 'number' ) {
		myHeight = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) {
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && document.body.clientHeight ) {
		myHeight = document.body.clientHeight;
	}
	myHeight = (myHeight - 330) / 2;
	if ( myHeight == myHeight2 ) {
		window.location = 'http://www.impregmeda.lt';
	}
}

document.write('<style type="text/css">');
document.write('#m0 {height: '+ getheight() +'px;}');
document.write('.ttl {display: none;}');
document.write('.gtp {display: none;}');
document.write('#lng1 {display: inline;}');
document.write('#lng2 {display: none;}');
document.write('#lng3 {display: none;}');
document.write('</style>');

//window.onresize = compareSizes;
