// JavaScript Document

function follow(src, target)
{
	window.open(src, target);
}

function subLink(option,id)
{
	if(option == "show")
	{
		document.getElementById(id).style.visibility="visible";
		document.getElementById(id).style.display="block";
	}else{
		document.getElementById(id).style.visibility="hidden";
		document.getElementById(id).style.display="none";
	}
}

function noLBs(section)
{
	if(section = "contact")
	{
		var mailName = document.contactForm.mailName.value;
		var mailLB = mailName.search(/#/);
		if(mailLB != -1)
		{
			alert('You may not have any "#" signs in this field.');
			document.contactForm.mailName.value = "";
		}
	}
}

function openVideo(src)
{
	window.open(src,'videoPage','width=470,height=390');
}
