var date = new Date();
if( date ){
	var tt = date.getTime();
	if( tt ){
		tt = new Date( tt + 3 * 1000 );
		tt = tt.toGMTString();
		document.write( "<META HTTP-EQUIV=\"expires\" CONTENT=\""+tt+"\">" );
	}
}