//////////////////////////////////////////////////////////////////////
//
//  Rotation of Image Files
//
//////////////////////////////////////////////////////////////////////

function getBrowser()
//	Returns IE, NS, NS6
{
	if (document.all) {
	  return "IE"
	}
	else if (document.layers) {
	  return "NS"
	}
	else if (document.getElementById) {
	  return "NS6"
	}
	else {
	  return ""
	}
}

//*********************************************************************

function window_onresize() 
{
	if (getBrowser == 'NS') 
	{
		setTimeout(window.location.reload(), 1000)
//		var origWidth = innerWidth;
//		var origHeight = innerHeight;
//
//		if (innerWidth != origWidth || innerHeight != origHeight)
//			location.reload();
	}
}

//////////////////////////////////////////////////////////////////////
