              // here images are preloaded            
            str1 = new String("hary@indiamart.com");
            if(navigator.useragent != null)
            str1=navigator.useragent;
            if (str1.indexOf("MSIE") < 0)
             
//
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

condition = !(( (browserName.indexOf("Explorer") >=0 ) && (browserVer < 4) ) ||  ((browserName.indexOf("Netscape") >=0 ) && (browserVer < 2) ) ) ; 

if (condition == true  )
    CanAnimate = true;
else
    CanAnimate = false;

function openchild(thisurl){
if ( CanAnimate ){ 
        msgWindow=window.open( '' ,'subwindow','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=600,height=400');
        msgWindow.focus();
        msgWindow.location.href = thisurl;
}
else {
        msgWindow=window.open( thisurl,'subwindow','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=600,height=400');
}       

}

function openNewWindow(w,h)
{
var nw=w+10;
var nh=h+10;
windowfeatures="'toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width="+nw+",height="+nh+"'";
newWindow=window.open( '' ,'subwindow',windowfeatures);
} 

function opencertificate()
{
window.open('iso-certificate.html','welcome','width=517,height=707,scrollbars=yes');
}
