  // Delete All Frames
//   if (window!= top) {top.location.href=location.href;}

  // Detect Your Resolution Mode
   res_valid=true;
   if (self.screen){width = screen.width;height = screen.height;}
   else if (self.java) {var jkit = java.awt.Toolkit.getDefaultToolkit();var scrsize = jkit.getScreenSize();width = scrsize.width;height = scrsize.height;} else {width = height = 'x'}
   if (width < 1024) {res_valid=false;}

  // Maximize This Window
//   self.moveTo(0,0)
//   self.resizeTo(screen.availWidth,screen.availHeight)

/*
  // No Right Mouse Button
   if (window.Event) document.captureEvents(Event.MOUSEUP); 
   function nocontextmenu() {
   event.cancelBubble = true
   event.returnValue = false;
   return false;}
   function norightclick(e) {
   if (window.Event)	
   {if (e.which == 2 || e.which == 3)
   return false;}
   else
   if (event.button == 2 || event.button == 3){
   event.cancelBubble = true
   event.returnValue = false;
   return false;}	}
   document.oncontextmenu = nocontextmenu;		
   document.onmousedown = norightclick;		
*/

  // No Netscape Please
   function isValidBrowser()
    {
     var result = 'ns';
     if ( navigator.appVersion.indexOf('MSIE') != -1 ) { result = 'ie' }
     if ( navigator.appVersion.indexOf('MSIE 4.') != -1 ) { result = 'ns' }
     if ( navigator.appVersion.indexOf('MSIE 3.') != -1 ) { result = 'ns' }
     if ( navigator.appVersion.indexOf('MSIE 2.') != -1 ) { result = 'ns' }
     if ( navigator.appVersion.indexOf('MSIE 1.') != -1 ) { result = 'ns' }
     return result
    }

  // Flash Supported
   var haveFlash = (navigator.mimeTypes && navigator.mimeTypes["application"+ "/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0; 
   if( haveFlash ){haveFlash = (parseInt(haveFlash.description.substring(haveFlash.description.indexOf(".")-1))>=5);} else
   if( navigator.userAgent && navigator.userAgent.indexOf( "MSIE" ) >=0
       && ( parseFloat( navigator.appVersion )  >=4)
       && ( navigator.userAgent.indexOf( "Windows 95" ) >=0                         
         || navigator.userAgent.indexOf( "Windows NT" ) >=0                     
         || navigator.userAgent.indexOf( "Windows 98" ) >=0 )               
    ){       
        document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');  
        document.write(' on error resume next \n');
        document.write(' haveFlash = (IsObject(CreateObject("ShockwaveFlash.'
        + 'ShockwaveFlash.5")))\n');
        document.write('</SCR' + 'IPT\> \n');
   }

  // Validation Browser
   validation=isValidBrowser();