function showConditions() 
{
	var win = window.open("conditions.html","blank","width=800,height=600,status=yes,toolbar=no,location=no,resizable=yes,scrollbars=yes");
	if (win.focus) win.focus();
}

function redirectURL()
{
	if (parent.location.href != self.location) return;
	var url=parent.location.href; 
	var host="ist5days.com/"; 
	if (url.indexOf(host) < 0) return;
	var page = url.split(host)[1];
	var params = page.split('?');
	if (params.length > 1) 
		  params[1] = "&" + params[1];
	else  params[1] = "";
	top.location.href = "http://www." + host + "default.asp?page=" + params[0] + params[1];
}

redirectURL();

// Added by Serkan Sendur Date : 08.01.2008
// removes the click to activate indicator from the flash
// usage : add this script just below the last </object> tag in the document

function removesClickActivate()
{
	objects = document.getElementsByTagName("object");
	for (var i = 0; i < objects.length; i++)
	{
		objects[i].outerHTML = objects[i].outerHTML;
	}
}

