/* New script added for inner pages theme */
$(document).ready(function(){
                setTimeout('setRightHeight()', 500)

                var strurl=window.location.href;
                
               if (strurl.indexOf('ko-KR')>0)
               {
					
					
					
					
					if(($.browser.msie) || ($.browser.safari)) 
					{
					   var str=$("#mainttl").html();
					   
						  if (str!=null)
						  { 
						  
							if($("#mainttl").html().charCodeAt(0)>255)
							{			 
							$("#mainttl").css({'display':'none'});
							$("#mainttlbar").append('<div id=mainttl>'+str+'</div>');
							 
							}  
						}
					
					}
					
					else
					{
						   if ($("#sIFR_replacement_2_alternate").html()!=null)
						{ 
						  
							if($("#sIFR_replacement_2_alternate").html().charCodeAt(0)>255)
							{			 
							$("#sIFR_replacement_2").css({'display':'none'});
							$("#mainttl").append($("#sIFR_replacement_2_alternate").html());
							
							}  
						}
					
					}
               }                      
});

function setRightHeight() {
                lColHeight = $("#lft_col_wrap").height();
                rColHeight = $("#rght_col_wrap").height();
                if(lColHeight > rColHeight) {
                                borderColHeight = lColHeight - 170;
                                $("#far_rt_col_wrap").css({height: borderColHeight + "px"});
                }
}
