// latest news switch
function latest_news(id)
{
    if(id == 1)
    {
        document.getElementById("latest_news").style.display = "block";
        document.getElementById("featured_projects").style.display = "none";
    }
    else if(id == 2)
    {
        document.getElementById("latest_news").style.display = "none";
        document.getElementById("featured_projects").style.display = "block";
    }
}

// company approach switch
function company_approach(id)
{
    if(id == 1)
    {
        document.getElementById("approach").style.display = "block";
        document.getElementById("vision").style.display = "none";
        document.getElementById("process").style.display = "none";
    }
    else if(id == 2)
    {
        document.getElementById("approach").style.display = "none";
        document.getElementById("vision").style.display = "block";
        document.getElementById("process").style.display = "none";
    }
    else if(id == 3)
    {
        document.getElementById("approach").style.display = "none";
        document.getElementById("vision").style.display = "none";
        document.getElementById("process").style.display = "block";
    }
}

function testips() {
	newwindow=window.open('testips.php','name','height=500,width=200');
	if (window.focus) {newwindow.focus()}
}

function popChatWin(groupint) {
        // check what to 'pop'
        if (!groupint) 
         groupint = 0;
         
	ccs_Page = "http://summit.helpserve.com/visitor/index.php?_m=livesupport&_a=startclientchat";

        tempWinHandle = window.open(ccs_Page'width=430,height=370,directories=no,location=no,menubar=no,scrollbars=no, status=no,toolbar=no,resizable=no');
        if ( !bw.safari ) {
                if (tempWinHandle != null && tempWinHandle != "") {
                        tempWinHandle.focus();
                }
        }
}
