// JavaScript Document

//alert(navigator.appVersion.indexOf("MSIE 6"))

if(navigator.appVersion.indexOf("MSIE 6") !=-1){ 
 h=screen.availHeight;
//alert(h)
if(h<=768){
minus=300;
}else
{minus=398;}

 reale_h=h-0-minus;
//alert(reale_h);
//alert("6");
 //writee='<div id="content" style="height:'+ reale_h +'px"><strong class="headerline_1">'+ header +'</strong><br><br>';
 writee='<div id="content" style="height:500px"><strong class="headerline_1">'+ header +'</strong><br><br>';
 document.write(writee); 
 }
 else
 {
 //alert("7");
 //document.write('<div id="content"><strong class="headerline_1">'+ header +'</strong><br><br>');
 document.write('<div id="content" style="height:400px"><strong class="headerline_1">'+ header +'</strong><br><br>');
 }

