// JavaScript Document



//show bottom elements in case page is slow to load
document.getElementById('Disclaimer').style.visibility = 'visible';
document.getElementById('MakeComments').style.visibility = 'visible';

function ConfigurePage(){

	//RandomImage();
	
	//detect window resolution
	if(navigator.appName == "Microsoft Internet Explorer"){ 
		var intWidth = document.body.clientWidth;
		var intHeight = document.body.clientHeight;
	} else {
		var intWidth = window.innerWidth;
		var intHeight = window.innerHeight;
	}	
	document.getElementById('MainSection').style.height = intHeight - 50;
	document.getElementById('SubMenuSection').style.height = intHeight - 298;
	//document.getElementById('RandomImage').style.height = intHeight - 20;

	if (intWidth < 700){
		document.getElementById('MainSection').style.width = 450;
	}
}



function PrintVersion(){
	IsPrintVersion = true;
	var PrintInfo1 = "<div style='padding: 10'><div style='text-align: right'><input type='button' class='Button' onMouseOver=className='ButtonHover' onMouseOut=className='Button' value='Normal version' onClick='NormalVersion()'></div>";
	var PrintInfo2 = "<br /><div style='text-align: right'><input type='button' class='Button' onMouseOver=className='ButtonHover' onMouseOut=className='Button' value='Normal version' onClick='NormalVersion()'></div></div>"
	document.body.innerHTML = PrintInfo1 + document.getElementById('MainSection').innerHTML + PrintInfo2;
	document.body.style.overflow = 'auto';
}

function NormalVersion(){
	IsPrintVersion = false;
	window.location = document.location;
	document.body.style.overflow = 'hidden';
}

function PopUpImage(url, wide, high){
	wide = wide + 40;
	high = high + 40;
	window.open(url,"my_new_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=" + wide + ", height=" + high)
}

function ClearSearchBox(){
	document.getElementById('words').value = "";
}
