function gourl(formfield)
{
	var url = formfield.value
	
	if (url == "")
	{	
		alert ('Coming Soon')
	}
	else
	{
		window.open(url)
	}
}
