function StartBig(page) {

//Start('Banner.pdf');
//alert(page);
//OpenWin = this.open(page, "TNT Window","titlebar=yes,toolbar=no,menubar=no,person albar=no,location=no,scrollbars=yes,resizable=no,width=800,height=600");
//OpenWin = this.open(page,"CtrlWindow","dependent=yes,location=no,menubar=no,resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,width=600,height=500");
window.location=page;
}

//---------------------------------------------------------------------------
function isCookieAvailable(){
	//alert("check");
	// detect if cookies are being blocked: set, then check.
	var x_cookieName = "CHECK"; // unique
	//var x_domain  = ".tntvacations.com"; // set to whatever domain you want to test, with the standard provisos
		var domain  = ""; // set to whatever domain you want to test, with the standard provisos
		//name = "CHECK";
		value="CHECK";
		path = "one";
		secure="";
	var nowDate = new Date();
	var expires = new Date(nowDate.getTime() + (10*1000)); // set time 60 sec testing persistent cookies
	//xDeleteCookie(x_cookieName); // don't get false positive
	
	// add path if you want to. drop expires for session cookie. drop domain for default domain test.
	//document.cookie = x_cookieName + "=test; expires=" + x_expires.toGMTString() + "; domain=" + x_domain;
	setCookie("CHECK","CHECK",expires);
	
	// now look for it.
	var x_cookieString = document.cookie || "";
	var x_cookies = x_cookieString.split(/\s*;\s*/);
	var x_found = 0;
	for (var i in x_cookies) {
	    var cookie = x_cookies[i];
	    var dough = cookie.split(/\s*=\s*/);
	    //alert(x_cookieName + ":" + dough[0]);
	    if (dough[0] == x_cookieName) { x_found = 1; break; }
	}
	
	// ensure it's gone
	//xDeleteCookie(x_cookieName);
	
	// do whatever you want with x_found bool
	if (x_found != 1) {
	    alert("Please enable cookies on your browser setting");
	    window.open("cookie.htm","cookie","toolbar=no, addressbar=no, height=250, width=650");
	}
}
function xDeleteCookie(name) {
	var x_cookieName = "one"; // unique
	//alert("hi");
    var oldDate = new Date(1970, 1, 1);
    document.cookie = x_cookieName + "=0; expires=" + oldDate.toGMTString();
}
function setCookie(name, value, expires, path, domain, secure)
{
    document.cookie= name + "=" + escape(value) +
        ((expires) ? "; expires=" + expires.toGMTString() : "") +
        ((path) ? "; path=" + path : "") +
        ((domain) ? "; domain=" + domain : "") +
        ((secure) ? "; secure" : "");
}
