<!-- Popup_after_click skripta head daljas saakums -->
function centerPopUp( url, name, width, height, scrollbars ) { 
 
	if( scrollbars == null ) scrollbars = "0" 
 
	str  = ""; 
	str += "resizable=1,"; 
	str += "scrollbars=" + scrollbars + ","; 
	str += "width=" + width + ","; 
	str += "height=" + height + ","; 
 
	if ( window.screen ) { 
		var ah = screen.availHeight - 30; 
		var aw = screen.availWidth - 10; 
 
		var xc = ( aw - width ) / 2; 
		var yc = ( ah - height ) / 2; 
 
		str += ",left=" + xc + ",screenX=" + xc; 
		str += ",top=" + yc + ",screenY=" + yc; 
	} 
	window.open( url, name, str ); 
} 
<!-- Popup_after_click skripta head daljas beigas -->

function onLoadStuff() {
var avHeight = screen.availHeight; 
//temp2 = document.getElementById("header").offsetHeight;
//temp3 = document.getElementById("contentTable").offsetHeight;
document.getElementById('mainHolder').style.height = (avHeight-135+'px');
document.getElementById('mainHolderTD').style.background = ('none');
}

function onLoad() {
	onLoadStuff();
}


