function getCookie(name) {
    var nameOfCookie = name + "=";
    var x = 0

    while ( x <= document.cookie.length ) {
        var y = (x+nameOfCookie.length);
        if ( document.cookie.substring( x, y ) == nameOfCookie ) {
            if ( (endOfCookie=document.cookie.indexOf( ";",y )) == -1 )
            endOfCookie = document.cookie.length;
            return unescape( document.cookie.substring(y, endOfCookie ) );
        }
        x = document.cookie.indexOf( " ", x ) + 1;
        if ( x == 0 )
        break;
    }
    return "";
}

function openCookieWin() {
    if (getCookie("ncook") != "done") {
        noticeWindow = window.open("popup.html","","width=300, height=380, top=50,left=50");
        noticeWindow.opener = self;
    }
}

var favoriteurl="http://www.travelandteachrecruiting.com/"
var favoritetitle="Travel and Teach Recruiting Inc. - Teach English in South Korea"

function addfavorites(){
    if (document.all)
    window.external.AddFavorite(favoriteurl,favoritetitle)
}

