// JavaScript Document
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function OpenNewWinCopyright(){ 
newin = window.open ("copyright.html","newin","toolbar=no, location=no, scrollbars =yes, menubar=no width=650, height=500");
}
function OpenNewWinPrivacy(){ 
newin = window.open ("privacypolicy.html","newin","toolbar=no, location=no, scrollbars =yes, menubar=no width=650, height=500");
}
function OpenNewWinTerms(){ 
newin = window.open ("termsofuse.html","newin","toolbar=no, location=no, scrollbars =yes, menubar=no width=650, height=500");
}
function OpenNewWinComments(){ 
newin = window.open ("comments.html","newin","toolbar=no, location=no, scrollbars =no, menubar=no width=600, height=400");
}
function CheckForm () {

	//Check for a word to search
	if (document.frmSiteSearch.search.value==""){
		alert("Please enter at least one keyword to search");
		document.frmSiteSearch.search.focus();
		return false;
	}
	
	return true
}
//-->
var menu1=new Array()
menu1[0]='<a href="overview.html">- Overview</a>'
menu1[1]='<a href="mission.html">- Mission</a>'
menu1[2]='<a href="vision.html">- Vision</a>'
menu1[3]='<a href="values.html">- Values </a>'


menu1[4]='<a href="srinsoftedge.html">- Why SrinSoft?</a>'
menu1[5]='<a href="partners.html">- Partners</a>'


var menu2=new Array()
menu2[0]='<a href="Application_Management.html">- Application Management</a>'
menu2[1]='<a href="Application_Development.html">- Application Development</a>'
menu2[2]='<a href="Application_Migration.html">- Application Migration</a>'
menu2[3]='<a href="Engineering_Services.html">- Engineering Services</a>'
menu2[4]='<a href="bpo.html">- BPO</a>'
menu2[5]='<a href="consulting.html">- IT Consulting</a>'
menu2[6]='<a href="testing.html">- Quality Assurance & Control</a>'

var menu3=new Array()
menu3[0]='<a href="coe.html">- Center of Excellence</a>'
menu3[1]='<a href="Business_Verticals.html">- Business verticals</a>'
menu3[2]='<a href="Business_Models.html">- Business Models</a>'
menu3[3]='<a href="technologies.html">- Technologies</a>'
menu3[4]='<a href="clientele.html">- Clientele</a>'

var menu4=new Array()
menu4[0]='<a href="Srinsoft_Practices.html">- SrinSoft Practices</a>'
menu4[1]='<a href="Employee_Benefits.html">- Employee Benefits</a>'
menu4[2]='<a href="Life_at_Srinsoft.html">- Life @ SrinSoft</a>'
menu4[3]='<a href="opportunities.html">- Opportunities</a>'
menu4[4]='<a href="postresume.html">- Post Resume</a>'
		
var menuwidth='100px' //default menu width
var menubgcolor= '#eeeeee'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}


function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){

var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what)
{
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)

dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

<!--
    function setResults() {
        var scW = 0, scH = 0, scX = 0, scY = 0;
        if (typeof (window.innerWidth) == 'number') {
            scW = window.innerWidth;
            scH = window.innerHeight;
            scY = window.pageYOffset;
            scX = window.pageXOffset;
        } else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
            scW = document.documentElement.clientWidth;
            scH = document.documentElement.clientHeight;
            scY = document.documentElement.scrollTop;
            scX = document.documentElement.scrollLeft;
        } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
            scW = document.body.clientWidth;
            scH = document.body.clientHeight;
            scY = document.body.scrollTop;
            scX = document.body.scrollLeft;
        }
        var w = parseInt(scW * 0.70);
        var h = parseInt(scH * 0.70);
        if (w < 320) w = 320;
        if (h < 240) h = 240;
        var left = parseInt((scW - w) / 2);
        var top = parseInt((scH - h) / 2);
        document.getElementById('sResults').style.top = top + 'px';
        document.getElementById('sResults').style.left = left + 'px';
        document.getElementById('sResults').style.width = w + 'px';
        document.getElementById('sResults').style.height = h + 'px';
        return;
    }
    function showResults() {
        setResults();
        document.getElementById('sResults').style.display = "block";
        return;
    }
    function hideResults() {

        document.getElementById('sResults').style.display = "none";
        return;
    }
    window.onresize = function() { setResults(); return; }
