// cms_templates.js (C) 2001-2002 Robert Brandner/Intermedias
// ====================================================================
// Funktionen für Templates

// cms_imgpopup - öffnet Bild in ganzer Größe in neuem Fenster
// ====================================================================
// img   - Bildname (incl. Pfad)
// w / h - width und height
//
function cms_imgpopup(img,w,h)
{
	w=w+40;
	h=h+40;
	var remote=open(img, "cms_popup", "height="+h+",width="+w+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=yes,scrollbars=yes,status=0,toolbar=0" );
}

