// JavaScript Document
function resetFooter(leftCol, rightCol){
	var sideH = document.getElementById(leftCol).offsetHeight;
	var conH = document.getElementById(rightCol).offsetHeight;
	var maxH = Math.max(sideH, conH);
	var siteBody = document.getElementById('SiteBody');
	siteBody.style.height = maxH+'px';
}

//Menu Show Hide: Start
var menuIndustry = false;
var menuSubscription = false;
//var menuPS = false;
//var menuTrade = false;
//var menuJob = false;

function menuShow(menuName){
	menuIndustry = false;
	menuSubscription = false;
//	menuPS = false;
//	menuTrade = false;
//	menuJob = false;
	
	document.getElementById('menuIndustry').style.visibility = "hidden";
	document.getElementById('menuSubscription').style.visibility = "hidden";
//	document.getElementById('menuPS').style.visibility = "hidden";
//	document.getElementById('menuTrade').style.visibility = "hidden";
//	document.getElementById('menuJob').style.visibility = "hidden";
	
	if(menuName == "industry"){
		menuIndustry = true;
		document.getElementById('menuIndustry').style.visibility = "visible";
	}
	if(menuName == "subscription"){
		menuSubscription = true;
		document.getElementById('menuSubscription').style.visibility = "visible";
	}
/*	if(menuName == "PS"){
		menuPS = true;
		document.getElementById('menuPS').style.visibility = "visible";
	}
	if(menuName == "Trade"){
		menuTrade = true;
		document.getElementById('menuTrade').style.visibility = "visible";
	}
	if(menuName == "Job"){
		menuJob = true;
		document.getElementById('menuJob').style.visibility = "visible";
	}
*/	
}
function setMenu(menuName, status){
	if(menuName == "industry"){	menuIndustry = status;}
	if(menuName == "subscription"){	menuSubscription = status;}
//	if(menuName == "PS"){menuPS = status;}
//	if(menuName == "Trade"){menuTrade = status;}
//	if(menuName == "Job"){menuJob = status;}
}
function checkMenu(){
	if(menuIndustry){
		document.getElementById('menuIndustry').style.visibility = "visible";
	}else{
		document.getElementById('menuIndustry').style.visibility = "hidden";
	}
	if(menuSubscription){
		document.getElementById('menuSubscription').style.visibility = "visible";
	}else{
		document.getElementById('menuSubscription').style.visibility = "hidden";
	}
/*
	if(menuPS){
		document.getElementById('menuPS').style.visibility="visible";
	}else{
		document.getElementById('menuPS').style.visibility="hidden";
	}
	
	if(menuTrade){
		document.getElementById('menuTrade').style.visibility="visible";
	}else{
		document.getElementById('menuTrade').style.visibility="hidden";
	}
	
	if(menuJob){
		document.getElementById('menuJob').style.visibility="visible";
	}else{
		document.getElementById('menuJob').style.visibility="hidden";
	}
*/
	setTimeout("checkMenu()",2000);
}
//Menu Show Hide: End

function setLang(lang){
	now=new Date( );
	now.setTime( now.getTime( ) + 1000 * 60 * 60 * 24 * 365 );
	document.cookie="lang="+lang+"; expires=" + now.toGMTString( );
	location.reload(true);
}

function popPage(pageLink, width, height){
	thePage = window.open(pageLink,"gc", "toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=yes,resizable=yes,scrollbars=yes,width="+width+",height="+height+",left=50,top=50");
	thePage.focus();
}
function popPage2(pageLink, width, height){
	thePage = window.open(pageLink,"gc2", "toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=yes,resizable=yes,scrollbars=yes,width="+width+",height="+height+",left=50,top=50");
	thePage.focus();
}

