/*
 *  5Q Communications
 *
 *  Created By: Bryan V
 *  Date: 2007-07-20
 * 
 *  These functions are default functions to be
 *  included in the default install of MODx for 
 *  5Q sites.
 *
 */

 
/* 
 * For print and email popup window links 
 *
 */
 
function LC_openfenetre(mypage,myname,w,h,scroll,resizable,pos){
          if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
            if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
            else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
            settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable='+resizable+'';
            win1=window.open(mypage,myname,settings);
            win1.focus(myname);
        }

/** Jesus Film original pop-up window function
 * modified by Nathan Ho <nathan.ho@5qcommunications.com>
 * 2008-11-21:  Added ability to accept height and width values via the function call
**/
function jfplayer(mylink, windowname, href, wide, high)
{
if (!high) {
    wHeight = 570;
} else {
    wHeight = high;
}
if (!wide) {
    wWidth = 676;
} else {
    wWidth = wide;
}
if (! window.focus)
return true;
window.open(href, windowname,'height='+wHeight+', width='+wWidth+' , scrollbars = 0,left = 5,top = 5 resizable = yes,menubar = no,status = no,titlebar = 0,toolbar = no, top = 0');
return false;
}
