﻿// JScript File

//Added by  :   Vilas Palve
//Date      :   03-09-2007
//Purpose   :   for the use iframes

var SelectedLink="";

//function for SiteMap page
//give link

function ShowSiteLink(LinkName)
{  
//for eRecruit
    if(LinkName.substring(0,2)=='eR')
    {      
            var TempLink=LinkName.substr(2);           
            open("http://www.erecruit.co.in/Erec/Index.asp?Id="+TempLink,"_parent");                   
    }   
//for WINDFALL    
    if(LinkName.substring(0,2)=='eW')
    {   
        var TempLink=LinkName.substr(2);            
        open("http://www.windfall.co.in/Index.asp?Id="+TempLink,"_parent");             
    }
    
}



function ShowDetails(LinkName,Bgfor)
{

    if(LinkName=='AGAINS_EREC' || LinkName=='AWINDFALL_GAINS'|| LinkName=='Home.htm' )
    {
        if(LinkName=='Home.htm')        
        {   
            open("../"+LinkName,"_parent");                                               
        } 

        else if(LinkName=='AWINDFALL_GAINS')
        {
           open("http://www.windfall.co.in/Index.asp?Id=AboutUs","_parent");            
        }
        else if(LinkName=='AGAINS_EREC')
        {
            open("http://www.erecruit.co.in","_parent"); 
        //    open("../Erec/Index.asp?Id=AboutUs","_parent");            
        }
    }
    else
    {
            
            open(LinkName,"MainFrm","","target=MainFrm");
            if(SelectedLink=="")
            {
            }
            else
            {
	   if(document.getElementById(SelectedLink) != null)//
	    {
                	document.getElementById(SelectedLink).style.color='#000000';
	     }
            }          
           SelectedLink= Bgfor;//'#ff8c00';
	if(document.getElementById(Bgfor) != null)//
	    {  
           		document.getElementById(Bgfor).style.color='#b22222';
	    }
           
   }
}
function setOverColor(param,ColParam)
{
    var SetColor=0;    
    
    //for ERec
    if(param.substring(0,2)=='eR')
    {
       document.getElementById(param).style.color='#0033CC';   
       SetColor=1;
    }
    //for Windfall
    else if(param.substring(0,2)=='eW')
    {
       document.getElementById(param).style.color='#669900';   
       SetColor=1;
    }     
    if(SetColor==0)
    {    
       //#FF8C00';  
       document.getElementById(param).style.color='#b22222';   
    }   
}

function setOutColor(param,ColParam)
{
    if(SelectedLink!=param)
    {
        document.getElementById(param).style.color=ColParam;      
    }
}

//load default page in the IFrame
function SetDefault()
{
    open('Aboutus.htm',"MainFrm","","target=MainFrm");
}
    


