
/* erzeugt ein neues fenster */
function popup(url, name, x, h){

	if(x == null)
		x = screen.Width - 15;

		
	if(h == null)
		h = screen.Height - 100;
		
	if(name == "") 
		name == "popup";
	
	var fenster = window.open(url, name, "width=" + x + ", height=" + h + ", left=100, top=100, menubar=0, fullscreen=0, resizable=1, status=1");	
	fenster.focus();
}

 // update des Preview aus den Hidden Fields
    function setColors()
    {
        var c  =  $("ctl00_mainContent_ucmain_ucschritt02_htitelfarbe").value;
        var tel =  $("prevtitle");tel.style.color = c;
        
        c  =  $("ctl00_mainContent_ucmain_ucschritt02_hinfofarbe").value;
        tel =  $("prevInfo");tel.style.color = c;
    
    }
