// JScript ÎÄ¼þ
var main;
window.onload=function(){
    main=document.getElementById("ctl00_ContentPlaceHolder1_Label7");
    main.style.fontSize='14px';
    main.style.lineHeight='22px';
}
function setSize(size){
    main.style.fontSize=size+'px';
    size=size+8;
    main.style.lineHeight=size+'px';
    return false;
}

