﻿// windows 98 �ϰ�
var ieVersion = new Number(((window.navigator.appVersion.split('; '))[1].split(' '))[1]);
if (ieVersion < 5.5)
{
	var nHeight=document.body.scrollHeight + document.body.offsetHeight;
	
	document.write("<iframe src='about:blank' Name='IFRMSTYLET' frameborder='0' scrolling='no' bordercolor='#FFFFFF' style='width:20;height:20;position:absolute;top:" + nHeight + ";left:0'></iframe>");
	
} else {
	document.write("<iframe src='about:blank' Name='IFRMSTYLET' frameborder='0' style='width:1px;height:1px'></iframe>");
}

