// JavaScript Document

function testForIE() 
{
	
	BrowserDetect(); //launch browser detect function
	
	if(this.isWin == true && this.isIE == true)
	{
		correctPNG();
	}
}

window.attachEvent("onload", testForIE);