// JavaScript Document

				
 function show_trial()
	{
		var window_width_trial = parseInt(window.innerWidth);
		var window_height_trial = parseInt(window.innerHeight);
		if(window_width_trial > "100%")
		{
			var remainder_width_trial = (window_width_trial-1000)/2;
			var window_left_trial = remainder_width_trial + 200;
		}
		else
		{
			var window_left_trial = 0;
		}
		/*document.getElementById("body").style.background = "gray";
		document.getElementById("body").style.filter = "alpha(opacity=70)";
		document.getElementById("body").style.opacity = "0.70";
		document.getElementById("body").style.display = "block";*/
		document.getElementById("show_free_trial").style.position = "absolute";
		document.getElementById("show_free_trial").style.background= "white";
		document.getElementById("show_free_trial").style.left = window_left_trial+"px";
		document.getElementById("show_free_trial").style.top = "300px";
		document.getElementById("show_free_trial").style.right = window_left_trial+"px";
		document.getElementById("show_free_trial").style.width = "640px";
		document.getElementById("show_free_trial").style.height = "auto";
		document.getElementById("show_free_trial").style.filter = 'alpha(opacity=100)';
		document.getElementById("show_free_trial").style.display = "block";
		document.getElementById("large_div_trial").style.left = "0px";
		document.getElementById("large_div_trial").style.top = "0px";
		document.getElementById("large_div_trial").style.width = "100%";
		document.getElementById("large_div_trial").style.height = "950px";
		document.getElementById("large_div_trial").style.position = "absolute";
		document.getElementById("large_div_trial").style.backgroundColor= "gray";
		document.getElementById("large_div_trial").style.opacity = "0.70";
		document.getElementById("large_div_trial").style.filter = 'alpha(opacity=70)';
		document.getElementById("large_div_trial").style.display = "block";
		//document.getElementById("show").style.width = "200px";
		return;
	}
	function hide_trial()
	{
		document.getElementById("large_div_trial").style.display = "none";
		document.getElementById("show_free_trial").style.display = "none";
	}
	function show_invoice()
	{
		var window_width_invoice = parseInt(window.innerWidth);
		var window_height_invoice = parseInt(window.innerHeight);
		if(window_width_invoice > "100%")
		{
			var remainder_width_invoice = (window_width_invoice-1000)/2;
			var window_left_invoice = remainder_width_invoice + 200;
		}
		else
		{
			var window_left_invoice = 0;
		}
		//alert("");
		/*document.getElementById("body").style.background = "gray";
		document.getElementById("body").style.filter = "alpha(opacity=70)";
		document.getElementById("body").style.opacity = "0.70";
		document.getElementById("body").style.display = "block";*/
		document.getElementById("show_invoice").style.position = "absolute";
		document.getElementById("show_invoice").style.background= "white";
		document.getElementById("show_invoice").style.left = window_left_invoice+"px";
		document.getElementById("show_invoice").style.top = "200px";
		document.getElementById("show_invoice").style.right = window_left_invoice+"px";
		document.getElementById("show_invoice").style.width = "640px";
		document.getElementById("show_invoice").style.height = "auto";
		document.getElementById("show_invoice").style.filter = 'alpha(opacity=100)';
		document.getElementById("show_invoice").style.display = "block";
		document.getElementById("large_div_trial").style.left = "0px";
		document.getElementById("large_div_trial").style.top = "0px";
		document.getElementById("large_div_trial").style.width = "100%";
		document.getElementById("large_div_trial").style.height = "950px";
		document.getElementById("large_div_trial").style.position = "absolute";
		document.getElementById("large_div_trial").style.backgroundColor= "gray";
		document.getElementById("large_div_trial").style.opacity = "0.70";
		document.getElementById("large_div_trial").style.filter = 'alpha(opacity=70)';
		document.getElementById("large_div_trial").style.display = "block";
		//document.getElementById("show").style.width = "200px";
		return;
	}
	function hide_invoice()
	{
		document.getElementById("large_div_trial").style.display = "none";
		document.getElementById("show_invoice").style.display = "none";
	}
