<!--

function popupWindow(fil,wid,hei) {
	var windowAttributes;
	var winWidth = wid;
	var winHeight = hei;
	var leftPos,rightPos;
	leftPos = (screen.width/2) - (winWidth / 2);
	rightPos = (screen.height/2) - (winHeight / 2);
	windowAttributes = "width="+winWidth+",height="+winHeight+",toolbar=no,left="+leftPos+",top="+rightPos+",location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no";
   	var courseWindow = open(fil,"",windowAttributes);
}

function gotoMost() {
	if (!document.all&&!document.getElementById) { //Check page is fully loaded
		return;
	}
	var el = document.getElementById? document.getElementById("select1"): document.all.tick2; //Get form element
	if (el.value!="") {
		window.location="solutions_product.asp?id="+el.value;
	}
}

function gotoAmbeo() {
	if (!document.all&&!document.getElementById) { //Check page is fully loaded
		return;
	}
	var el = document.getElementById? document.getElementById("select2"): document.all.tick2; //Get form element
	if (el.value!="") {
		window.location="solutions_product.asp?id="+el.value;
	}
}

function gotoService() {
	if (!document.all&&!document.getElementById) { //Check page is fully loaded
		return;
	}

	var el = document.getElementById? document.getElementById("select3"): document.all.tick2; //Get form element
	if (el.value!="") {
		window.location="solutions_services.asp?id="+el.value;
	}
}

//-->