<!--
function inidDownload(downloadLink, redirectLink) {
	var isSaf = ( window.navigator.userAgent.toUpperCase().indexOf( 'SAFARI' ) != -1 );
	var isKonq = ( window.navigator.userAgent.toUpperCase().indexOf( 'KONQUEROR' ) != -1 );
	
    var isIe = (window.navigator.userAgent.toUpperCase().indexOf('MSIE') != -1);
    var isOpera = (window.navigator.userAgent.toUpperCase().indexOf('OPERA') != -1);
	var isMozilla = ( window.navigator.userAgent.toUpperCase().indexOf( 'GECKO' ) != -1 && !isSaf && !isKonq);
//	if(!downloadLink || !redirectLink) {
//		var downloadLink = location.href.indexOf("beta") != -1 ? "/go/getskype-beta" : "/go/getskype";
//		var redirectLink = location.href.indexOf("beta") != -1 ? "downloading_beta.html" : "downloading.html";
//	}
	
//	if(isIe && !isOpera) {
		dlWindow = window.open(downloadLink, '_blank','toolbar=0,location=no,directories=0,status=0,scrollbars=no,resizable=0,width=10,height=10,top=0,left=0');
//	}
//	else if (isMozilla)
//	{
//		dlWindow = window.open(downloadLink, '_blank','toolbar=0,location=no,directories=0,status=0,scrollbars=no,resizable=0,width=10,height=10,top=0,left=0');
//	}
//	document.location = redirectLink;
	return true;
}
//-->