<!--
function globalWindowOpen(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function pikDir() {
	//place the popup
	var meat = screen.width/2;
	var filler= screen.height/2;
	var tastesGreat = Math.ceil(Math.random() * meat);
	var lessFilling = Math.ceil(Math.random() * filler);
	var windowNum= Math.ceil(Math.random() * 100000);
	//pick the directory
	var loadArray = new Array("a","b","c","d","e","f");
	var arrayLength = loadArray.length;
	var dart= (Math.ceil(Math.random() * arrayLength))-1;
	var targetDir = loadArray[dart];
	
	
	if (targetDir == "a") {
			var can=Math.ceil(Math.random() * 9);
			globalWindowOpen('/img/a/index_exclude.html?'+targetDir + '&' + can,targetDir+can+windowNum,'width=637,height=206,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+tastesGreat+','+'top='+lessFilling+'');
	}
		if (targetDir == "b") {
			var can=Math.ceil(Math.random() * 27);
			globalWindowOpen('/img/b/index_exclude.html?'+targetDir + '&' + can,targetDir+can+windowNum,'width=516,height=300,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+tastesGreat+','+'top='+lessFilling+'');
	}
		if (targetDir == "c") {
			var can=Math.ceil(Math.random() * 7);
			globalWindowOpen('/img/c/index_exclude.html?'+targetDir + '&' + can,targetDir+can+windowNum,'width=475,height=300,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+tastesGreat+','+'top='+lessFilling+'');		
	}
		if (targetDir == "d") {
			var can=Math.ceil(Math.random() * 4);
			globalWindowOpen('/img/d/index_exclude.html?'+targetDir + '&' + can,targetDir+can+windowNum,'width=383,height=165,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+tastesGreat+','+'top='+lessFilling+'');
	}
		if (targetDir == "e") {
			var can=Math.ceil(Math.random() * 17);
			globalWindowOpen('/img/e/index_exclude.html?'+targetDir + '&' + can,targetDir+can+windowNum,'width=302,height=191,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+tastesGreat+','+'top='+lessFilling+'');
	}
		if (targetDir == "f") {
			var can=Math.ceil(Math.random() * 4);
			globalWindowOpen('/img/f/index_exclude.html?'+targetDir + '&' + can,targetDir+can+windowNum,'width=126,height=119,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+tastesGreat+','+'top='+lessFilling+'');
	}
}
//-->