/* open new window */
function openWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/* preload images */
var img = new Image(); img.src = "images/pixel.gif";

/* netscape resize fix */
if (navigator.appName=="Netscape" && parseInt(navigator.appVersion)==4) {
	widthCheck = window.innerWidth
	heightCheck = window.innerHeight
	window.onResize = resizeFix
}
function resizeFix() {
	if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
	document.location.href = document.location.href
}

/* break frames */
if (window != top) top.location.href = location.href;