function MOver(obj)
{
	obj.style.background='#FFFFFF';
	obj.style.filter='alpha(opacity=70)';
}

function MOut(obj)
{
	obj.style.background='';
	obj.style.filter='';
}

function SMOver(obj)
{
	obj.style.background='#FFFFFF';
	obj.style.filter='alpha(opacity=70)';
}

function SMOut(obj)
{
	obj.style.background='';
	obj.style.filter='';
}

function MClick(obj,theURL)
{
	window.location=theURL;
}

function MOver2(obj)
{
	obj.style.background='#FFFFFF';
	obj.style.filter='alpha(opacity=80)';
}

function MapPopUp(theURL)
{
	MapWin=window.open(theURL,'MAP','width=257,height=212');
	MapWin.focus();
}
function Enquiry(Cat,Name1,Name2,Link)
{
	theURL="Enq_Item_Add.asp?Cat=" + Cat + "&Name1=" + Name1 + "&Name2=" + Name2 + "&Link=" + Link + "&r=" + Math.random();
	Feature='toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=617,height=500';
	EnqWin=window.open(theURL,'ENWin',Feature);
	EnqWin.focus();
}
function ViewBasket()
{
	theURL="Enq_Item_List.asp?r=" + Math.random();
	Feature='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=900,height=500';
	EnqWin=window.open(theURL,'ENWin',Feature);
	EnqWin.focus();
}

function RegisterWindows()
{
	theURL="Register_form.asp";
	Feature='toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=617,height=500';
	EnqWin=window.open(theURL,'ENWin',Feature);
	EnqWin.focus();
}