function clickLinkThickBox( id, title, content_name  ) {
         jQuery('#'+id).click(function() {
                ua = navigator.userAgent;  
                var verofmsie = ua.match( /MSIE (\d+(?:\.\d+)+(?:b\d*)?)/ )  ;  
                if ( jQuery.browser.msie  &&  verofmsie == 'MSIE 6.0,6.0'  ) {
                   // show ie6 pop up
             window.open( '/read/index/read/'+content_name, 100 , 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=450,height=400');
                 } else {
                   tb_show( title, '/read/index/read/'+content_name+'?KeepThis=true&TB_iframe=true&height=250&width=450' , null);
                }  
                return false;
        });     
}


jQuery(document).ready(function() {
        clickLinkThickBox ( 'link_privacy', 'Privacy Statement', 'privacy' );
        clickLinkThickBox ( 'link_faq', 'Frequently Asked Questions', 'faq' );
});





