function pop(url, width, height) 
{
popUp = window.open(url, "popWindow", "width="+width+",height="+height+",toolbar=yes,location=yes,resizeable=yes,scrollbars=yes,menubar=yes");
popUp.focus();
}

function pop2(url, width, height) 
{
popUp = window.open(url, "popWindow", "width="+width+",height="+height+",toolbar=no,location=no,resizeable=yes,scrollbars=yes,menubar=no");
popUp.focus();
} 

// resizes the content and wrapper divs when content is less than window height
onload=function() {
	// branch for IE/mozilla et al.
	if(window.ActiveXObject){
		if(document.getElementById('wrapper').offsetHeight < document.body.offsetHeight){
			document.getElementById('wrapper').style.height = document.body.offsetHeight +"px";
		
			document.getElementById('content').style.height = (document.getElementById('wrapper').offsetHeight-242)+"px";	
		}
	}else{
		if(document.getElementById('wrapper').offsetHeight < window.innerHeight){
			document.getElementById('wrapper').style.height = window.innerHeight +"px";
		
			document.getElementById('content').style.height = (document.getElementById('wrapper').offsetHeight-242)+"px";	
		}
	}
	
	
}

