function opendownload()
{
	var url, target, flag;
	url = 'download.asp';
	target = 'download';
	flag = 'width=200,height=450,scrollbars=yes,menubar=no,resizable=no';
	window.open(url, target, flag);
}

function init()
{
	try
	{
		if (navigator.appName.toLowerCase().indexOf('internet explorer') >= 0)
			document.createStyleSheet('../css/home_IE6.css');
	}
	catch (e)
	{
	}
}

setTimeout('init();', 0);
