// JavaScript Document

//Opens the enquiry form pop-up
function fnEnquirePopUp(){
	window.open('enquire.htm','enquire','width=700,height=617,toolbar=0,resizable=0')
}


//Opens the selected product pop-up for the HTML galleries
function fnProductPopUp(X,Y){
	var filename = Y
	filename = filename.toLowerCase()
	filename = filename.replace(" ", "_") // Replaces the first space
	filename = filename.replace(" ", "_") // Replaces the second space
	filename = filename.replace(" ", "_") // Replaces the third space
	filename = filename.replace(" ", "_") // Replaces the fourth space
	filename = filename.replace(" ", "_") // Replaces the fifth space
	window.open('html/' + X + '/' + filename + '.htm',''+filename+'', 'width=700,height=550,toolbar=0,resizable=0')
}


//Opens a window to show the selected flash gallery.
function fnOpenFlashPopUp(X){
	window.open('gallery/flash/' + X + '/', ''+ X + '', 'width=700,height=550,toolbar=0,resizable=0')
}

//Swaps the planter image
function fnPlanterSwap(X,Y,Z){
	newImage = "url(images/" + Y + ".jpg)";
    document.getElementById(X).style.backgroundImage = newImage;
	document.getElementById(X).alt = Z
}