// d�clarations de fonctions utilis�es dans plusieurs pages
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	if (windowFeatures.search(/scrollbars/) == -1) {
		windowFeatures = windowFeatures + ",scrollbars=1";
	}
	if (windowFeatures.search(/toolbar/) == -1) {
		windowFeatures = windowFeatures + ",toolbar=0";
	}
	if (windowFeatures.search(/titlebar/) == -1) {
		windowFeatures = windowFeatures + ",titlebar=0";
	}
	if (windowFeatures.search(/status/) == -1) {
		windowFeatures = windowFeatures + ",status=0";
	}
	if (windowFeatures.search(/resizable/) == -1) {
		windowFeatures = windowFeatures + ",resizable=0";
	}
	if (windowFeatures.search(/location/) == -1) {
		windowFeatures = windowFeatures + ",location=0";
	}
	if (windowFeatures.search(/width/) == -1) {
		windowFeatures = windowFeatures + ",width=792";
	}
	if (windowFeatures.search(/height/) == -1) {
		windowFeatures = windowFeatures + ",height=600";
	}
	if (windowFeatures.search(/left/) == -1) {
		windowFeatures = windowFeatures + ",left=0";
	}
	if (windowFeatures.search(/top/) == -1) {
		windowFeatures = windowFeatures + ",top=0";
	}
	window.open(URLtoOpen, windowName, windowFeatures); 
}


//*****************************************************************
// pr�chargement des images
//*****************************************************************

im01= new Image(160,240);
im01.src="/pix/collection/icone/sixtiesoff.jpg";

im02= new Image(160,240);
im02.src="/pix/collection/icone/sixtieson.jpg";

im03= new Image(160,240);
im03.src="/pix/collection/icone/classiqueoff.jpg";

im04= new Image(160,240);
im04.src="/pix/collection/icone/classiqueon.jpg";

im05= new Image(160,240);
im05.src="/pix/collection/icone/sculptureoff.jpg";

im06= new Image(160,240);
im06.src="/pix/collection/icone/sculptureon.jpg";

im07= new Image(160,240);
im07.src="/pix/collection/icone/newoff.jpg";

im08= new Image(160,240);
im08.src="/pix/collection/icone/newon.jpg";

