// JavaScript Document
<!--
function quickLink(val){
	if(val == "home")
		document.location.href= "/";
	else if(val == "sox")
		document.location.href= "/solutions/sox.php";
	else if(val == "businessOpt")
		document.location.href= "/solutions/businessOpt.php";
	else if(val == "ITsolutions")
		document.location.href= "/solutions/ITsolutions.php";
	else if(val == "projManagement")
		document.location.href= "/solutions/projManagement.php";
	else if(val == "resourcing")
		document.location.href= "/solutions/resourcing.php";
	else if(val == "contact")
		document.location.href= "/contact.php";
	else if(val == "quick"){}
	else
		alert("Value or link is unknown, please contact your administrator");
}
function setTopLink(who){
	var topLinks = new Array("top_home","top_company","top_solutions","top_partners","top_brochure","top_contact");
	try{
	for(var i=0; i < topLinks.length; i++){
		document.getElementById(topLinks[i]).style.color = "#FFFFFF";
	}
	document.getElementById(who).style.color = "#E10915";
	}catch(e){}
}

function setQuickLinkBox(who){
	for(var i = 0; i < document.getElementById('quicklink').options.length; i ++){
		if(who == document.getElementById('quicklink').options[i].value){
			document.getElementById('quicklink').selectedIndex = i;
			break;
		}
	}
}

var win = null;
var ss_win = null;
var url = "";
function newWin(url){
	if(win){win.close();}
	win = window.open(url, 'win', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+window.screen.width+',height='+window.screen.width+',left=100, top=50');
	win.focus();
}

function newWinSS(url){
	if(ss_win){ss_win.close();}
	ss_win = window.open(url, 'win', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=415,height=325,left=100, top=50');
	ss_win.focus();
		
}

function resetForm(){
	document.location.href = "contact.php";
}

-->
