// JavaScript Document
function popup(mylink, windowname)
{
	if (windowname=="resultList")
	{
		imageWindow = window.open(mylink, windowname, 'width=800,height=480,scrollbars=yes,resizable=yes');
		imageWindow.focus();
	}
	return false;
}

/*sets scroll area height*/
function scrArea(){
	if (document.getElementById("resultsScroll")!= null){
		if(document.documentElement.clientHeight){
			document.getElementById("resultsScroll").style.height = document.documentElement.clientHeight-240+"px";
		}
		else if(document.body.clientHeight){
			document.getElementById("resultsScroll").style.height = document.body.clientHeight-240+"px";
		}
	}
	
}

if (window.addEventListener) window.addEventListener("resize",scrArea,false);
if (window.addEventListener) window.addEventListener("load",scrArea,false);
if (window.attachEvent) window.attachEvent("onload", scrArea);
if (window.attachEvent) window.attachEvent("onresize", scrArea);
