<!-- Popups - 2008/02 - BlastMan

// Write a new line if NOT IE6 only
function IE6NewLine()
{
	if(!IE6) 
		document.write('<br/>');
}

// Set an image in GIF or PNG whether the browser is IE6 or other
// path : the image path without extension
function IE6ImagePNG(path, extra)
{
	if(IE6) // GIF for tranparency
		document.write('<img src="' + path + '.gif" border="0" ' + extra + ' alt=""/>');
	else
		document.write('<img src="' + path + '.png" border="0" ' + extra + ' alt=""/>');
}



//-->