
function toggle(targetId) {
	if (document.getElementById) {
		target = document.getElementById(targetId);
			if(target.style.display == "none") {
				target.style.display = "";
			} else {
				target.style.display = "none";
		}
	}
}

function popupslide(url)
{
newwindow=window.open(url,'slide','height=306,width=306,top=100,left=100,resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no');
if (window.focus) {newwindow.focus()}
return false;
}

function popupnoslide(url)
{
newwindow=window.open(url,'noslide','height=355,width=310,top=100,left=100,resizable=yes,scrollbars=auto,menubar=no,toolbar=no,status=no,location=no');
if (window.focus) {newwindow.focus()}
return false;
}

function popupatelier(url)
{
newwindow=window.open(url,'Atelier','height=610,width=800,top=100,left=100,resizable=yes,scrollbars=auto,menubar=no,toolbar=no,status=no,location=no');
if (window.focus) {newwindow.focus()}
return false;
}

