function callDropDown()
{
	/* 
		Any browser supporting more than this number will be assumed to be able to handle the Flash method - SetVariable()
		Mac(OS 9) IE 5 supports only 3 properties of Flash object (with Flash plugin 7) -> invalid method
		NN both platforms supports 44, all other browsers/platforms support more(Flash pluggin 7)
		Mac(OS 9) NN 4.8 = 44, Mac(OS 9) Mozilla 1.2.1 = 113
		Win XP IE 6 = 172, Win XP NN 4.79 = 44, Win XP Mozlla 1.6 = 126, Win98 IE 4 = 100
	*/
	var bigAssumption = 10;    
	var propArray = new Array();
	var i = 0;
	for (var prop in window.document.showcasedropdown)
	{
		propArray[i++] = prop;
	}

	if (propArray.length >= bigAssumption)
	{
		var myString = location.href;
		window.document.showcasedropdown.SetVariable('hostFile', myString);
	}
}