<!--

function window_open(url, width, height)
{

	var top = (screen.height / 2) - (height / 2);
	var left = (screen.width / 2) - (width / 2);


	window.open(url, "help", "width="+ width +", height="+ height +", top="+ top +", left="+ left +", scrollbars=yes");

}


function checkFieldEmpty( obj, email_phone )
{

	if( email_phone == 1 )
	{
		var email = document.getElementById("_ctl1_wg_mobile");
		var phone = document.getElementById("_ctl1_wg_email");

		if ( email.value != "" || phone.value != "" )
		{
			phone.className = "text";
			email.className = "text";
		}
		else
		{
			phone.className = "mandatory";
			email.className = "mandatory";
		}
	}
	else
	{
		if (obj.value == '')
		{
				obj.className = 'mandatory';
		}
		else
		{
				obj.className = 'text';
		}
	}

}

-->