
<!--
//var skus = ["http://www.harborfreight.com/cpi/html/g2.html","http://www.harborfreight.com/cpi/html/g3.html","http://www.harborfreight.com/cpi/html/g4.html","http://www.harborfreight.com/cpi/html/g5.html","http://www.harborfreight.com/cpi/html/g6.html"];
var skus = ["http://www.harborfreight.com/cpi/html/g1.html","http://www.harborfreight.com/cpi/html/g2.html","http://www.harborfreight.com/cpi/html/g3.html","http://www.harborfreight.com/cpi/html/g4.html","http://www.harborfreight.com/cpi/html/g5.html","http://www.harborfreight.com/cpi/html/g6.html"];


function getrand(){
//the random number in this case will fall between 0-6
	var randomnumber=Math.floor(Math.random()*skus.length);
	return randomnumber;
}

function popuppage(){

//ALWAYS ADD THE COOKIE CHECK SO THERE IS ONLY 1 POPUP PER VISIT
var cookieval = getCookie('popup');

if(getCookie('userid')==null || getCookie('userid')==''){
	
if (getCookie('popunder')==null || getCookie('popunder')==''){
	
	//open the window if there is no cookie present
	theurl = skus[getrand()];
	win2 = window.open(theurl);	
	if(win2 != null){ 
		win2.blur()
		window.focus();
	}
	//SET THE POPUNDER COOKIE
	document.cookie="popunder=yes";
}	
	
}

}

// -->

