function setcolor(obj)
{
	if(obj == '1')
	{
		document.getElementById("outer_home").style.backgroundImage="url(images/intro_bg.jpg)";
	}
	else if(obj == '2')
	{
		document.getElementById("outer_home").style.backgroundImage="url(images/bpo_bg.jpg)";
	}
	else if(obj == '3')
	{
		document.getElementById("outer_home").style.backgroundImage="url(images/consulting_bg_home.jpg)";
	}
	else if(obj == '4')
	{
		document.getElementById("outer_home").style.backgroundImage="url(images/development_bg.jpg)";
	}
	else
	{
		document.getElementById("outer_home").style.backgroundImage="url(images/cloud_bg.jpg)";
	}
}
//function  chk_browser(){
// Get the dimensions of the browser window
//var winwidth = document.body.clientWidth;
//var winheight = document.body.clientHeight;

// Get the dimensions of the layer
//var layerwidth = apDiv1.clientWidth;
//var layerheight = apDiv1.clientHeight;

// Centre the layer
//apDiv1.style.left = ((winwidth - (layerwidth+125))/2) + "px";
//apDiv1.style.top = ((winheight - (layerheight+45))/2) + "px";
//}


function chk_browser() 
{            

   var obj=document.getElementById("apDiv_quickcontact");       
   var int_left=screen.width;
   if (int_left>1024)
   {        
        int_left=int_left-1024;    
        int_left=int_left/2;        
        int_left=int_left+701;        
   }   
   else
   {
        int_left=265;
   }
   
   obj.style.top="81px";   
   obj.style.left=int_left +"px";
   obj.style.display = 'block';   
     
   
}

