function openStoreLink(dropdown)
{
	var myindex  = dropdown.selectedIndex;
	var href = dropdown.options[myindex].value;
	var win = null;
	if(href != "")
	{

		win = window.open(href,'_blank','width=640,height=480,resizable=yes,menubar=yes,status=yes,toolbar=yes,titlebar=yes,location=yes,scrollbars=yes');
		if(!win)
		{
			location.href = href;
		}

	}
	return true;
}


