function notInFrameset() {
	if (self != top) {
		top.location.href = self.location.href;
	}
}

function statusBar() {
	window.status = ":: PINBLOC ::";
}

function preload() {
	var img = new Image();
	for (i=0; i<preload.arguments.length; i++) {
		img.src =  preload.arguments[i];
	}
	preloadflag = true;
}

function rollover() {
	if ((preloadflag == true)&&(document.images)) {
		for (i=0; i<rollover.arguments.length; i+=2) {
			document.images[rollover.arguments[i]].src = rollover.arguments[i+1];
		}
	}
}

