function openShare()
{
  var fs = window.open( "share?v=f-IDNOL7dkU" ,
           "ShareVideo", "toolbar=no,width=" + 500  + ",height=" + 400
         + ",status=no,resizable=yes,fullscreen=no");
  fs.focus();
}

function checkBrowser()
{
	if (document.all)
	{
		var userAgent = navigator.userAgent;
		var href = location.href;
		if (userAgent.indexOf('IE 8.0') != -1 && href.indexOf('search/?search') != -1)
		{
			var lineBreak = document.getElementById("lineBreak");
			lineBreak.innerHTML = '';
		}
	}	
}

function onSignupSubmit(formObj)
{
	if (formObj)
	{
		if (!formObj.icertify.checked || !formObj.iagree.checked)
		{
			alert("Please verify that you are at least 18 years of age & \nagree to our terms and conditions by ticking the appropriate boxes.");
			return false;
		}
	}
	return true;
}