//	3D Shadowcasters
//	A Blackwolf Designs site
//	www.blackwolfdesign.net
//	
//	These functions are used throughout the site, and are included here in one file for simplicity

//	This launches the email form pop-up.  I fixed its layout issues, and have brought it back.
function launch_form()
{
	var url = '/INC/email_form.php';
	window.open(url,'contact_form','width=490,height=500,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no');
}

function process_links()
{
	targets = document.getElementsByTagName('a');
	for(i in targets)
	{
		if(targets[i].className == 'email_link')
		{
			targets[i].href="javascript:launch_form()";
		}
		else if(targets[i].className == 'helplink')
		{
			targets[i].href="javascript:void(0);";
			targets[i].target = "";
		}
	}
}

function help(app,q)
{
	var url = '/help.php?app='+app+'&q='+q+'&embed=1';
	window.open(url,'help','width=500,height=300,resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no');
}

