function CheckIEVersion()
{
    var appname = navigator.appName;
    var useragent = navigator.userAgent;
    if(appname == "Microsoft internet Explorer") appname ="IE";
    IE55 = (useragent.indexOf('MSIE 5.5')>0); //5.5¹öÀü
    IE6 = (useragent.indexOf('MSIE 6')>0); //6¹öÀü
    IE7 = (useragent.indexOf('MSIE 7')>0); //7¹öÀü
    IE8 = (useragent.indexOf('MSIE 8')>0); //8¹öÀü
    if(appname == "Microsoft Internet Explorer" && IE8)
    {
        // ÀÍ½ºÇÃ·Î·¯ 8¹öÀüÀÏ °æ¿ì ¾È³» ¸ð´Þ Ã¢ È£Ãâ
        WindowOpen('900','700',"frmRecruitApplicationHelper.aspx","Setting","Yes");	 
        location.href = "frmRecruitApplicationSearchDetail.aspx";   
    }
    else
    {
        location.href = "frmRecruitApplicationSearchDetail.aspx";
    }
}

var win= null;
function WindowOpen(w,h,mypage,myname,scroll)
{
    var winl = (screen.width-w)/2;
    var wint = (screen.height-h)/2;
    var settings ='height='+h+',';
    settings +='width='+w+',';
    settings +='top='+wint+',';
    settings +='left='+winl+',';
    settings +='scrollbars='+scroll+',';
    settings +='resizable=no';
    win=window.open(mypage,myname,settings);
}



