function f_noteView(pLayerName){
	
	var obj = eval(pLayerName+'.style');

	if(obj.display == 'none' || obj.display == ''){
		obj.display = 'block';
	} else {
		obj.display = 'none';
	}
}

function scaleFont(objFont,val)
{
	if(val > 0)
	{
		
		if (fontSize <= 14) 
        { 
            fontSize = fontSize + val;
            lineHeight = fontSize+Math.round(1.1*fontSize); 
            $(objFont).style.fontSize = fontSize + "px"; 
			//$(objFont).style.lineHeight = lineHeight + "px";			
         } 
 	}
	else
	{
 		if (fontSize > 8) 
    	{ 
             fontSize = fontSize + val;
             lineHeight = fontSize+Math.round(1.1*fontSize); 
             $(objFont).style.fontSize = fontSize + "px"; 
			//$(objFont).style.lineHeight = lineHeight + "px";			 
		} 
		else 
		{ 
     		lineHeight = fontSize+Math.round(1.1*fontSize); 
     		$(objFont).style.fontSize = fontSize + "px"; 
			//$(objFont).style.lineHeight = lineHeight + "px";
         }
	}
}