function CheckPicked(myForm)
{
	if (myForm.myPicklist.options[myForm.myPicklist.selectedIndex].value == '')
	{
		return false;
	}
	else if (myForm.myPicklist.options[myForm.myPicklist.selectedIndex].value == 'http://www.exportdiagnostic.ca')
	{
		window.open(myForm.myPicklist.options[myForm.myPicklist.selectedIndex].value,'_blank');
		return false;
	}		
	else
	{
		//myForm.action = myForm.myPicklist.options[myForm.myPicklist.selectedIndex].value;
		//return true;
		window.open(myForm.myPicklist.options[myForm.myPicklist.selectedIndex].value,'_top');
		return false;
	}
}
