/*
*    Tools zu motionadmin CMS
*/

//openflyer Function für PopUp Darstellung
function openflyer(myPage,myWidth,myHeight,myWindowName){
    var winl = (screen.width - myWidth) / 2;
    var wint = (screen.height - myHeight) / 2;

    winprops = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+myWidth+',height='+myHeight+',top='+wint+',left='+winl;

    myWindowName = window.open(myPage, myWindowName, winprops);
}