function changeScreenSize(w,h,left,top)
{
	window.resizeTo(w,h)
	window.moveTo(left, top)
}

function emptyEBox(obj)
{
	var val = obj.value;
	if(val == "your email")
		obj.value='';
}

function sendPromo()
{
	window.moveTo(0,0)
	setTimeout("location.href='slideshows/PromotionalSlideshow.pps'",7000)
}

function sendArabian()
{
	window.moveTo(0,0)
	setTimeout("location.href='slideshows/ArabianNights.pps'",7000)
}

function sendDiamonds()
{
	window.moveTo(0,0)
	setTimeout("location.href='slideshows/DiamondsEvent.pps'",7000)
}

var live="";

function toggleArea(site)
{
	text=site+'Text';
	over='webDesignMelbourne/'+site+'Over.jpg';

	if(live!="" && live!=site)
	{
		document.getElementById(live).style.display = 'none';
	}

	if(document.getElementById(text).style.display == 'none')
	{
		document.getElementById(site).src = over;
		document.getElementById(text).style.display = 'block';

		live=text;
	}
}

function resetsrc(site)
{
	out='webDesignMelbourne/'+site+'.jpg';
	document.getElementById(site).src = out;
}

function highlight(obj)
{
	obj.bgColor = 'C0EDBE';
}

function unhighlight(obj)
{
	obj.bgColor = '';
}

function changecolor(id, color)
{
	element = document.getElementById(id);
	element.style.background = color;
}