// JavaScript Document
function resizeContent(){
	//document.getElementById('header').style.height=0+'px';
//	document.getElementById('header').style.display='none';
	//document.getElementById('content').style.height=600+'px';
	//document.getElementById('content').style.height='auto';
	//document.getElementById('content3').style.width=900+'px';
	//document.getElementById('content').style.overflow='auto';
	document.getElementById('content').style.backgroundImage='url()';
	document.getElementById('content2').style.backgroundImage='url()';
	document.getElementById('content3').style.backgroundImage='url()';
}
function resizeMidNavContent(){
	//document.getElementById('content').style.backgroundImage='url()';
	document.getElementById('content2').style.backgroundImage='url()';
	//document.getElementById('content3').style.backgroundImage='url()';
}
function openWin(aObj, width, height, other) {
  var url = aObj.href;
  var tgt = aObj.target;
  if(!other) other = ''; else other = ','+other;

  window.open(url, tgt, 'width='+width+',height='+height+other);
  return false;
}