//<!--
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','background-Color=#FFFFCC,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=900,height=600');
        msgWindow.focus();
        msgWindow.location.href = thisurl;
}
      
}

function openchild1(thisurl){
if ( CanAnimate ){ 
        msgWindow=window.open( '' ,'subwindow','background-Color=#FFFFCC,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=620,height=480');
        msgWindow.focus();
        msgWindow.location.href = thisurl;
}
      
}
function openchild2(thisurl){
if ( CanAnimate ){ 
        msgWindow=window.open( '' ,'subwindow','background-Color=#FFFFCC,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=800,height=620');
        msgWindow.focus();
        msgWindow.location.href = thisurl;
}
      
}
//-->

