function changestyle(strNewStyle) {
	document.style.strStyle.value = strNewStyle;
	document.style.submit();
}

function checkout() {
	document.cart.strAction.value = 'checkout';
	document.cart.submit();
}

function jukebox() {
	var winl = (screen.width - 491) / 2;
	var wint = (screen.height - 145) / 2;
	winprops = 'height=145,width=491,top='+wint+',left='+winl+',scrollbars=no,resizable=no'
	window.open('../medias/jukebox/', 'jukebox', winprops)
}

function showLayer(layerId,show) {
	if (document.getElementById && document.getElementById(layerId)) { objLayer = document.getElementById(layerId); } else if (document.all && document.all[layerId]) { objLayer = document.all[layerId]; } else if (document.layers && document.layers[layerId]) { objLayer = document.layers[layerId]; } else { objLayer = null; }
	if (objLayer !== null) { objLayer.style.display = (show == 1) ? 'block' : 'none'; }
}

function trickoftheweek() {
	var winl = (screen.width - 320) / 2;
	var wint = (screen.height - 256) / 2;
	winprops = 'height=256,width=320,top='+wint+',left='+winl+',scrollbars=no,resizable'
	window.open('../medias/trickoftheweek/', 'trickoftheweek', winprops)
}

function zoom(id) {
	var winl = (screen.width - 650) / 2;
	var wint = (screen.height - 530) / 2;
	window.open('../images/products.php?id='+id, '_blank','width=650,height=530,top='+wint+',left='+winl+',scrollbars=no,resizable')
}

