<!--//
var ie = isIE();
var IS = whichVersion();
function goHot(imgn) {
   if (IS) { document.images[imgn].src = '/images/b.active.gif'; }
}
function goCold(imgn) {
   	if (IS) { document.images[imgn].src = '/images/b.blank.gif'; }
	window.status='Cigars For Less! Save $$$ On The Best!';
	return true;
}
function isIE() {
	if((navigator.userAgent.lastIndexOf("MSIE") != -1) && (navigator.userAgent.lastIndexOf("4.") != -1)) {
		return true
	} else {
		return false
	}
}

function whichVersion() { 
	if((navigator.userAgent.lastIndexOf("MSIE") != -1) && (navigator.userAgent.lastIndexOf("3.") != -1)) return false;
	if((navigator.userAgent.lastIndexOf("3.0") != -1) || (navigator.userAgent.lastIndexOf("4.0") != -1)) { 
		return true 
	} else { 
		return false 
	}
}

function swapPage(page) {
	// make sure our URL isn't blank
	if (page == "" || page == null) {
		alert("Please choose a category before continuing.");
		return false;
	}
	// load the page
	location.href = page;
}

function viewImg(URL,width,height) {
	var imgWin = window.open(URL, "imgWin", "width=" + width + ",height=" + height + ",menu=0,scrollbars=1");
}
//-->