
///////////////////////////////////////////////////////////////////////////////////////////

function showPopup(root,action)
{

	var url = root+'popup.php?action='+action; 
	var hoehe = 340;
    var breite= 550;
    
	scrollbars="yes";
	resizable="yes";
	
    hoehe = parseInt(hoehe)+50;						
	var winH = (screen.width - breite) / 2;
	var winV = (screen.height - hoehe) / 2;
	fenster = 'height='+hoehe+',width='+breite+',top='+winV+',left='+winH+',scrollbars='+scrollbars+',resizable='+resizable;
      			
   	honk = window.open(url, "content", fenster);
   	honk.focus();
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

