

var iv_scriptletIncluded_nbc = 1;




function nbc_launchVideo(videoID, iceTag, skin) {
	var site = "http://video.ivillage.com/player/";

    switch (skin) {
        case "live": site = "http://video.ivillagelive.com/player.html"; break;
        case "TH": site = "http://video.health.ivillage.com/player/"; break;
        default:
    }

    var param = "?id=";
    var vidURL = site + param + videoID;

	//special case for url as videoID for streaming urls	
	var checkString = String(videoID);
    if (checkString.indexOf("url:") != -1) { vidURL = checkString.substring(4); }

    // add ice tag
    vidURL += (vidURL.indexOf("?") == -1 ? "?" : "&") + "ice=" + iceTag;
    var vidWindow = window.open(vidURL, "vidWindow");
    return false;
}

