/*
PROJECT      Rustoleum/Mathys/Ameron Direct
OWNERSHIP    Optimised Web Design, Philip Kay
ADDRESS      Duken House, Wootton, Bridgnorth, WV15 6EA, UK
TEL          +44 (0) 1746 781 653
FAX          +44 (0) 1746 781 667
MOBILE       +44 (0) 7711 317 681
RIGHTS       The contents and design of these pages are the property of
             the author who grants no rights for copying, distribution
             or reselling without prior written agreement.
COPYRIGHT    Copyright (c) 2008 Optimised Web Design
*/


var Colour;

function over(Id){
	Colour = document.all[Id].bgColor;
	document.all[Id].bgColor = '#FFFFFF';
	document.all[Id].children[0].style.color = '#F7A500';
}

function out(Id){
	document.all[Id].bgColor = Colour;
	document.all[Id].children[0].style.color = '#FFFFFF';
}

function down(File){
	location = File;
}

function pdf(Url){
	Args = 'left=0,top=0,screenX=0,screenY=0,width=600,height=800,resizable=yes,scrollbars';
	window.open(Url, 'pdf', Args);
}

