﻿/*This Function is used to open the What's Ad link in same or new window as per the condition*/
function submitpage(value,targetValue)
{
    var newWindow = window.open(value,targetValue ); 
    newWindow.focus(); 
    return false; 
}
function showtabnews(value)
{
    window.location= "news.aspx?flag="+value;
}
function showtabevent(value)
{
    window.location= "events.aspx?flag="+value;
}
function showtabjob(value)
{
    window.location= "careers.aspx?flag="+value;
}

