﻿// JScript File
<!--
function GetCookie(NameCookie) {
    var i = document.cookie.indexOf(NameCookie + '=' );
    if (i != -1) {
        i += NameCookie.length + 1;
        NameEnd = document.cookie.indexOf(';', i);
        if (NameEnd == -1) {
          NameEnd = document.cookie.length;
        }
        return  unescape(document.cookie.substring(i, NameEnd));
    }
    else {
        return "";
    }
}





//유류할증료
var Cookievalue3 = GetCookie('extracharge');
if (Cookievalue3 == "") {
    var tour3 = window.open('/popup/main/oil_extracharge.html','event1','top=0,left=0,width=624 height=350');
    if(tour3 != null) tour3.focus();
}


/*
//투어마일리지 삼성빅앤빅 카드
var Cookievalue2 = GetCookie('samsungcard');
if (Cookievalue2 == "") {
    var tour2 = window.open('/popup/main/samsungcard_20110722.html','event2','top=0,left=0,width=450 height=500');
    if(tour2 != null) tour2.focus();
}




//쇼킹세일 반짝특가
var Cookievalue4 = GetCookie('air');
if (Cookievalue4 == "") {
    var tour4 = window.open('/popup/main/p20111031.html','event4','top=0,left=400,width=430 height=563');
    if(tour4 != null) tour4.focus();
}
*/

-->
