 
 
      <!--     hide   script   from   old   browsers   
          
function compareDate(DateOne,DateTwo)
{ 
 

var OneMonth = DateOne.substring(5,DateOne.lastIndexOf ("-"));
var OneDay = DateOne.substring(DateOne.length,DateOne.lastIndexOf ("-")+1);
var OneYear = DateOne.substring(0,DateOne.indexOf ("-"));

var TwoMonth = DateTwo.substring(5,DateTwo.lastIndexOf ("-"));
var TwoDay = DateTwo.substring(DateTwo.length,DateTwo.lastIndexOf ("-")+1);
var TwoYear = DateTwo.substring(0,DateTwo.indexOf ("-"));

if (Date.parse(OneMonth+"/"+OneDay+"/"+OneYear) >=
Date.parse(TwoMonth+"/"+TwoDay+"/"+TwoYear))
{
return true;
}
else
{
return false;
}

}
//alert("dddd")
//var i=document.lastModified
//var a=i.split("/")
//var c=a[2].split(" ")
//var s=c[0]+"-"+a[0]+"-"+a[1]
//alert(document.lastModified)

if(Date.parse(document.lastModified)>Date.parse('2/25/2008 17:32:30') )
{
	// alert(document.lastModified);
//	alert("²»ΈΔ");
	
}
else
{
	var url=document.location.href;
	var htmlurl=url.substr(url.lastIndexOf("/")+1);
	var html=htmlurl.substr(0,htmlurl.lastIndexOf("."));
  //  alert(document.lastModified);
  // alert("ΈΔ");
	window.location.href="../../count/ArticleNewsHtml.aspx?pagename="+htmlurl;

}
      //   end   hiding   contents   -->   
 
