/* nyitó oldal speciális */

var pageHeight = {
	nPlusHeight: 169 + 36, /* fölös magasság */
//	nPlusHeight: 561 + 169 + 36, /* fölös magasság */
	init: function() {
		var elContent =	document.getElementById('pg-content')
			windowDim = getViewport();
		
		if ( elContent.offsetHeight < windowDim.height ) {
			elContent.style.height = windowDim.height - pageHeight.nPlusHeight + 'px';
		}

	}
}

function NewWindow( myurl, myname, w, h, scroll ) {
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+topPosition+',left='+leftPosition+',scrollbars='+scroll+',resizable=no';
	win = window.open(myurl, myname, settings);
}

addEvent( window, 'load', function() {
	pageHeight.init();
} );

addEvent( window, 'resize', function() {
	pageHeight.init();
} );
