

var menu1=new Array()
menu1[0]='<a href="ws.html">&nbsp;&nbsp;&nbsp; Why Secure</a>'
menu1[1]='<a href="mt.html">&nbsp;&nbsp;&nbsp; Market Trend </a>'
menu1[2]='<a href="tp.html" >&nbsp;&nbsp;&nbsp; Team Profile</a>'
menu1[3]='<a href="why-intellesecure.html" >&nbsp;&nbsp;&nbsp; Why IntelleSecure</a>'
var menu2=new Array()
menu2[0]='<a href="indian.html">&nbsp;&nbsp;&nbsp; India</a>'
menu2[1]='<a href="middleeast.html">&nbsp;&nbsp;&nbsp; Middle East</a>'
var menu3=new Array()
menu3[0]='<a href="cissp.html">&nbsp;&nbsp;Workshop for CISSP aspirants</a>'
menu3[1]='<a href="cisa.html">&nbsp;&nbsp;Workshop for CISA aspirants</a>'
menu3[2]='<a href="cism.html">&nbsp;&nbsp;Workshop for CISM aspirants </a>'
menu3[3]='<a href="cbcp.html">&nbsp;&nbsp;Workshop for CBCP aspirants </a>'
menu3[4]='<a href="infosec.html">&nbsp;&nbsp;Certified Ethical Hacker (CEH)</a>'
menu3[5]='<a href="ircf.html">&nbsp;&nbsp;Computer Forensics (CHFI)</a>'
menu3[6]='<a href="ECSA.html">&nbsp;&nbsp;Certified Security Analyst (ECSA/LPT)</a>'
menu3[7]='<a href="appsec.html">&nbsp;&nbsp;Application Security</a>'
menu3[8]='<a href="cep.html">&nbsp;&nbsp;Enterprise Security </a>'
menu3[9]='<a href="aia.html">&nbsp;&nbsp;Intrusion Analysis</a>'
menu3[10]='<a href="fs.html">&nbsp;&nbsp;Firewall Security </a>'
menu3[11]='<a href="ws1.html">&nbsp;&nbsp;Wireless Security</a>'
menu3[12]='<a href="sox.html">&nbsp;&nbsp;Workshop on SOX</a>'
menu3[13]='<a href="cobit.html">&nbsp;&nbsp;Workshop on COBIT</a>'
menu3[14]='<a href="coso.html">&nbsp;&nbsp;Workshop on ERM</a>'
menu3[15]='<a href="sas_70.html">&nbsp;&nbsp;Workshop on SAS-70</a>'
menu3[16]='<a href="bcm.html">&nbsp;&nbsp;Workshop on BCP &amp; DR </a>'
menu3[17]='<a href="is-aduit.html">&nbsp;&nbsp;Workshop on IS Audit  </a>'
menu3[18]='<a href="itil.html">&nbsp;&nbsp;ITIL v3 Foundation</a>'
menu3[19]='<a href="itil-sm.html">&nbsp;&nbsp;ITIL Service Manager</a>'
menu3[20]='<a href="itil-mb.html">&nbsp;&nbsp;ITIL Manager’s Bridge</a>'
menu3[21]='<a href="ISO20000.html">&nbsp;&nbsp;ISO 20000 Foundation</a>'
menu3[22]='<a href="internal-audit.html">&nbsp;&nbsp;ISO 27001 Internal Audit</a>'
menu3[23]='<a href="lead-audit.html">&nbsp;&nbsp;ISO 27001 Lead Auditor</a>'


var menu4=new Array()
menu4[0]='<a href="http://www.excellanze.com" target="_blank">&nbsp;&nbsp;&nbsp;Excellanze</a>'
menu4[1]='<a href="http://www.albaconsulting.co.in" target="_blank">&nbsp;&nbsp;&nbsp;Alba Consulting</a>'
menu4[2]='<a href="http://www.babysdayout.co.in" target="_blank">&nbsp;&nbsp;&nbsp;Babys Day Out</a>'

var menu5=new Array()
menu5[0]='<a href="rfp_training.html"  target="_parent">&nbsp;&nbsp;&nbsp; Corporate Training </a>'
menu5[1]='<a href="rfp_consulting.html"  target="_parent">&nbsp;&nbsp;&nbsp; Corporate Consulting </a>'
 


var menuwidth='150px' //default menu width
var menubgcolor='EBEBEB'  //menu bgcolor
var disappeardelay=50  //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=-500
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.left="-10px"
dropmenuobj.style.top=(dropmenuobj.y + 1)-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



/* center popup*/

/*
Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
Permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable, resizable=no'
win = window.open(mypage,myname,settings)
}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}