
function showSignupForm(p_type, p_event)
{
	var targetURL = '/en/form.php?type=' + p_type;

	targetURL += (p_event != null && p_event != undefined) ? '&event=' + p_event : '';

	var signupForm = window.open(targetURL,"Signup","toolbar=0,status=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width=430,height=505,left=50,top=50");
}

function showTrialForm(p_type)
{
	var targetURL = '/en/form_trial.php?type=' + p_type;

	var signupForm = window.open(targetURL,"Trial","toolbar=0,status=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=430,height=575,left=50,top=50");
}

function showRequestForm(p_type)
{
	var targetURL = '/en/form_request.php?type=' + p_type;

	var signupForm = window.open(targetURL,"Trial","toolbar=0,status=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=430,height=470,left=50,top=50");
}

function showHubspotForm()
{
	var targetURL = '/en/form_hubspot.php';

	var signupForm = window.open(targetURL,"Hubspot","toolbar=0,status=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=430,height=630,left=50,top=50");
}