<script language=javascript>
function doZoom(size)
{
document.getElementById('TxtNR').style.fontSize=size+'px';
}
//
function getLLS(win,p)
{
var url=win.location.search.substring(1);
var tempStr=p+"=";
if(url.indexOf(tempStr)==-1)
{
return;
}
if(url.indexOf("&")!=-1){
var a=url.split("&");
var i=0;
for( i=0;i<a.length;i++)
{
if(a[i].indexOf(tempStr)!=-1)
{
return a[i].substring(tempStr.length);
}
}
}
else{
return url.substring(tempStr.length);
}
}
//
function Print()
{
myFrm.focus();
window.print();
}
function PrintYL()
{
window.open('../PrintFW2.aspx?PageType=FW&GUID='+getLLS(window,"GUID"));
}
</script>
看的不是很懂