
//	browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 2 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 2 )));
//	browser4 = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )));


function download(file){

		// test for cookie
/**
		var cookie = document.cookie.indexOf("newsletter=true");
      if (cookie == -1) {
	   	if (!self.url) { self.url = ''; }
   	 	if (parent.name != 'test') {
      	 test = window.open("../newsletter.html", "test", "resizable=yes,width=380,height=300");		 
    		}
		}
**/
		// do download

		window.location.href = file;
}

function purchase(product){

		// open purchase window

		if (!self.url) { self.url = ''; }
   	if (parent.name != 'test') {
      	test = window.open("https://server25.hypermart.net/dancity/cgi-bin/purchase.pl?product="+product+"&stage=0", "test", "resizable=yes,width=500,height=420");
			//test = window.open("../nosales.html", "dancity", "resizable=yes,width=500,height=420");
    	}
}

