// javascript for www.sardinianvillas.com, (c) 2007 Tomas J Stehlik, www.stehlik.co.uk
function spamstop(adre,dome,exte)
{ 
	window.location.replace('mailto:' +adre+ '@' +dome+ '.' +exte+ '?subject=Request from www.sardinianvillas.com'); 
}
// deprecated
function load()
{
	return true;
}
// deprecated
function initialize()
{
	return true;
}
// deprecated
function GUnload()
{
	return true;
}
function MM_findObj(n, d)
{ //v4.01
	var p, i, x;
	if (!d) d = document;
	if ((p = n.indexOf("?")) > 0 && parent.frames.length)
	{
		d = parent.frames[n.substring(p+1)].document;
		n = n.substring(0, p);
	}
	if (!(x = d[n]) && d.all) x = d.all[n];
	for (i = 0; !x && i < d.forms.length; i++) x = d.forms[i][n];
	for (i = 0; !x && d.layers && i < d.layers.length; i++) x = MM_findObj(n,d.layers[i].document);
	if (!x && d.getElementById) x = d.getElementById(n);
	return x;
}
function validateRadio1(form1)
{
	for (i = form1.printed_brochure.length - 1; i > -1; i--)
	{
		if (form1.printed_brochure[i].checked)
		{
			myOption = i;
			i = -1;
		}
	}
	var val = form1.printed_brochure[myOption].value;
	if (val == 'Yes')
	{
	}
}
function validateRadio2(form1)
{
	var myOption = -1;
	for (i = form1.how_found.length - 1; i > -1; i--)
	{
		if (form1.how_found[i].checked)
		{
			myOption = i;
			i = -1;
		}
	}
	var val = form1.how_found[myOption].value;
	if (val == 'Other' || val == 'Other_search_engine')
	{
	}
}
function MM_validateForm()
{ //v1.1 TJS customised
	var i, p, q, nm, nmf, nmfpb = 0, nmfhf = 0, test, num, min, max, errors = '', args = MM_validateForm.arguments;
	for (i = 0; i < (args.length-2); i += 3)
	{
		test = args[i+2];
		val  = MM_findObj(args[i]);
		if (val)
		{
			nm  = args[i+1];
			if ((val = val.value) != '')
			{
				if (test.indexOf('isEmail') != -1)
				{
					p = val.indexOf('@');
					if (p < 1 || p == (val.length-1)) errors += '- "' + nm + '" field must contain an e-mail address.\n';
				}
				else if (test != 'R' && test != 'RisAddress' && test != 'RisOther')
				{
					num = parseFloat(val);
					if (isNaN(val)) errors += '- "' + nm + '" must contain a number.\n';
					if (test.indexOf('inRange') != -1)
					{
						p = test.indexOf(':');
						min = test.substring(8, p);
						max = test.substring(p+1);
						if (num < min || max < num) errors += '- "' + nm + '" must contain a number between ' + min + ' and ' + max + '.\n';
					}
				}
			}
			else if (test.charAt(0) == 'R') errors += '- "' + nm + '" is required.\n';
		}
	}
	if (errors) alert('The following error(s) occurred:\n\n' + errors);
	document.MM_returnValue = (errors == '');
}
function displayOther(form1)
{
	var myOption = -1;
	for (i = form1.how_found.length - 1; i > -1; i--)
	{
		if (form1.how_found[i].checked)
		{
			myOption = i;
			i = -1;
		}
	}
	var val = form1.how_found[myOption].value;
	if (val == 'Other' || val == 'Other_search_engine')
	{
		var s1;
		s1 = document.getElementById('displayOther');
		s1.style.display = 'block';
	}
	else
	{
		var s1;
		s1 = document.getElementById('displayOther');
		s1.style.display = 'none';
	}
}
function displayAddress(form1)
{
	var myOption = -1;
	for (i = form1.printed_brochure.length - 1; i > -1; i--)
	{
		if (form1.printed_brochure[i].checked)
		{
			myOption = i;
			i = -1;
		}
	}
	var val = form1.printed_brochure[myOption].value;
	if (val == 'Yes')
	{
		var s1;
		s1 = document.getElementById('displayAddress');
		s1.style.display = 'block';
	}
	else
	{
		var s1;
		s1 = document.getElementById('displayAddress');
		s1.style.display = 'none';
	}
}
function tjsOpenWindow()
{
	if (navigator.appName.indexOf("Netscape") > (-1))
	{
		var tjsPopupWin = window.open('', 'tjsPopupWin', 'scrollbars=yes,toolbar=no,resizable,status,width=750,height=550,x=0,y=0,top=0,left=0');
	}
	else
	{
		var tjsPopupWin = window.open('', 'tjsPopupWin', 'scrollbars=yes,toolbar=no,resizable, status=yes, width=750, height=550,top=0,left=0');
	}
	if (tjsPopupWin.focus())
	{
		return true;
	}
	else
	{
		return false;
	}
}
function tjsOpenWindowTryPopup(urlTryPopup, urlRegular)
{
	window.name = 'tjsParentWin';
	if (tjsOpenWindow())
	{
		tjsPopupWin.location(urlTryPopup);
	}
	else
	{
		tjsParentWin.location(urlRegular);
	}
}