<!--
function SetPage(id)
{
	document.getElementById(id).style.color="#575757";
	document.getElementById(id).style.backgroundColor="#fff";
	if (id=="dig") document.getElementById("mnuleft1").src="images/mnu_left_on.gif";
	if (id=="scr") document.getElementById("mnuright1").src="images/mnu_right_on.gif";
	if (id=="out") document.getElementById("mnuleft2").src="images/mnu_left_on.gif";
	if (id=="con") document.getElementById("mnuright2").src="images/mnu_right_on.gif";
}

function SetMargLeft(id)
{
	document.getElementById(id).src="images/mnu_left_on.gif";
}

function SetMargRight(id)
{
	document.getElementById(id).src="images/mnu_right_on.gif";
}

function ResetMargLeft(id)
{	if (menubarID!=="dig")
	document.getElementById(id).src="images/mnu_left.gif";
}
function ResetMargLeft2(id)
{	if (menubarID!=="out")
	document.getElementById(id).src="images/mnu_left.gif";
}

function ResetMargRight(id)
{	if (menubarID!=="scr")
	document.getElementById(id).src="images/mnu_right.gif";
}
function ResetMargRight2(id)
{	if (menubarID!=="con")
	document.getElementById(id).src="images/mnu_right.gif";
}
//opens a new popup window containing the page from parameter "url":
var newWin;
function OpenWin(url,title,w,h){
	w=parseInt(w);
	h=parseInt(h);
	if (!mac) if (new String(newWin)!="undefined" && newWin!=null) if (!newWin.closed) newWin.close();
	newWin=window.open(url,title,"width="+w+",height="+h+",top=210,left=310,location=no,directories=no,hotkeys=no,copyhistory=no,resizable=yes,menubar=no,status=no,toolbar=no,scrollbars=yes,z-lock=yes");
	//if (mac) win.resizeTo(w+25,h+50);
	newWin.focus();
}

//opens a new popup window containing the image from parameter:
var newWinImg;
function OpenImage(imgFile){
	if (new String(newWinImg)!="undefined" && newWinImg!=null) if (!newWinImg.closed) newWinImg.close();
	var newWinImg=window.open("","XpressCRMWindow","width=100,height=100,top=0,left=0,location=no,directories=no,hotkeys=no,copyhistory=no,resizable=no,menubar=no,status=no,toolbar=no,scrollbars=no,z-lock=yes");
	newWinImg.document.write('<html><head><title>Microsoft Dynamics Hosted CRM on Demand</title></head><body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" bgcolor="#ffffff" onload="window.resizeTo(parseInt(document.images[\'img\'].width)+10,parseInt(document.images[\'img\'].height)+29)"><img src="' + imgFile + '" name="img" /></body></html>');
	newWinImg.document.close();
	newWinImg.focus();
}

//-->