function showWindow(url, name, width, height)
{
	var win = window.open(url, name, 'width=' + width + ',height=' + height + ',top=20,left=20,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no', true);
	if (win)
	{
		win.focus();
	}
	return win;
}
function showGallery(id, width, height)
{
	showWindow('gallery.php?id=' + id, 'gallery', width, height);
}
function showFlyer(id, width, height)
{
	showWindow('flyer.php?id=' + id, 'gallery', width, height);
}
function showCV()
{
	var win = window.open('cv.php', 'cv', 'width=642,top=20,left=20,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toobar=no',true);
	if (win) win.focus();
}
function showOrder()
{
	var win = window.open('order.php', 'order', 'width=642,top=20,left=20,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toobar=no',true);
	if (win) win.focus();
}
function getStyle(element)
{
	return (element && element.style) ? element.style : element;
}
function hlh(td, hl)
{
	var style = getStyle(td);
	if (style)
	{
		style.backgroundColor = hl ? "#B8B58A" : "#CECAA7";
	}
}

