
if(document.location.href.indexOf('www.kwsaustria.at')==-1)
{    
	if (document.location.port != '')
	{
		//alert(document.location.protocol + '//www.kwsaustria.at:' + document.location.port + document.location.pathname + document.location.search);
		document.location.replace(document.location.protocol + '//www.kwsaustria.at:' + document.location.port + document.location.pathname + document.location.search);
	}
	else
	{
		//alert(document.location.protocol + '//www.kwsaustria.at' + document.location.pathname + document.location.search);
		document.location.replace(document.location.protocol + '//www.kwsaustria.at' + document.location.pathname + document.location.search);

	}
}

