function tb_position() {
jQuery("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH /2), 10) + 'px', width: TB_WIDTH + 'px'});
var browser = navigator.userAgent.toLowerCase();
var IEVersion;
var brVerId = browser.indexOf('msie');
if (brVerId > 0) {
IEVersion = browser.substr( brVerId + 5 ,1);
}
if (! (IEVersion && IEVersion == '6')) {
jQuery("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
}
} 
