// Set the default status for the browser status window
default_status="StorageReview.com"

// Set any "global" variables
function global_init(){
	window.status=default_status
}

// Enable correct resizing in Navigator 4.x
// (IE 4+ and Navigator 6 do it perfectly)
// Usage: Just LINK to your HTML page 
function handleResize() 
{
	if (window.prevWidth != window.innerWidth || window.prevHeight != window.innerHeight) 
	{
		history.go(0);
		return false;
	}
}

if (navigator.appName.indexOf("Netscape") >= 0 && parseInt(navigator.appVersion) == 4)
{
	window.prevWidth = window.innerWidth;
	window.prevHeight = window.innerHeight;
	window.captureEvents(Event.RESIZE);
	window.onresize = handleResize;
}

// Link in the stylesheet
document.write('<LINK rel="stylesheet" type="text/css" href="/styles/storagereview.css">');
