
//<!--
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(gif){

if ( CanAnimate ){
        msgWindow=window.open( '' ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=405,height=450');
        msgWindow.focus();
msgWindow.document.write('<HTML><head><Title>Blowups</Title></head>');
msgWindow.document.write('<body bgcolor="#FFFFFF" Topmargin="0" leftmargin="0">');
msgWindow.document.write('<center><img src="' + gif + '"></center>');
msgWindow.document.write('</body></HTML>');

        //msgWindow.location.href = thisurl;
}
else {
        //msgWindow=window.open( gif,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=405,height=450');

        msgWindow=window.open( gif ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=405,height=450');
        msgWindow.focus();
msgWindow.document.write('<HTML><head><Title>Blowups</Title></head>');
msgWindow.document.write('<body bgcolor="#FFFFFF" Topmargin="0" leftmargin="0">');
msgWindow.document.write('<center><img src="' + gif + '"></center>');
msgWindow.document.write('</body></HTML>');
}       

}

function openurl(url)
{
msgWindow=window.open(url);
msgWindow.focus();
}

function openchild1(gif){

if ( CanAnimate ){
        msgWindow=window.open( '' ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=405,height=450');
        msgWindow.focus();
msgWindow.document.write('<HTML><head><Title>Blowups</Title></head>');
msgWindow.document.write('<body bgcolor="#FFFFFF" Topmargin="0" leftmargin="0">');
msgWindow.document.write('<center><img src="' + gif + '"></center>');
msgWindow.document.write('</body></HTML>');

        //msgWindow.location.href = thisurl;
}
else {
        //msgWindow=window.open( gif,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=405,height=450');

        msgWindow=window.open( gif ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=405,height=450');
        msgWindow.focus();
msgWindow.document.write('<HTML><head><Title>Blowups</Title></head>');
msgWindow.document.write('<body bgcolor="#FFFFFF" Topmargin="0" leftmargin="0">');
msgWindow.document.write('<center><img src="' + gif + '"></center>');
msgWindow.document.write('</body></HTML>');
}       








}

//-->
