var base_siteurl = "http://www.prodisplay.com/";

function show_contactbox()
{
	MOOdalBox.open( // case matters
	base_siteurl+"/static/contact_box.html", // the link URL
	"Some kind of caption", // the caption (link's title) - can be blank
	"500 400" // width and height of the box - can be left blank
	);

}


function show_privacybox()
{
	MOOdalBox.open( // case matters
	base_siteurl+"/static/privacy_policy.html", // the link URL
	"Some kind of caption", // the caption (link's title) - can be blank
	"500 450" // width and height of the box - can be left blank
	);

}

function show_langbox()
{
	MOOdalBox.open( // case matters
	base_siteurl+"/static/lang_box.html", // the link URL
	"Some kind of caption", // the caption (link's title) - can be blank
	"450 300" // width and height of the box - can be left blank
	);

}

function change_language()
{
	var translator = "http://www.google.com/translate_p";
	var baseurl = base_siteurl;
	//encodeURI(window.location.href);
	var base_params = "%3Flang="+document.getElementById('lang_select').value;
	//var baseurl = "http%3A%2F%2Fwww.pd.webautomation.co.uk%2FHome-Page.html&langpair=en%7Car&hl=en&ie=UTF8"
	var newlang = document.getElementById('lang_select').value;

	var translator_params = "?langpair="+newlang+"&hl=en&ie=UTF8&u=";
	//base_params="";
	var new_url= translator+translator_params+baseurl+base_params;

	if (newlang=="GB")
	{
		new_url = base_siteurl;
	}
	else
	{
		if (newlang=="US")
		{
			new_url = base_siteurl+'?lang=US';
		}

	}
	top.location.href=new_url;
}


