// JavaScript Document


//POP UPS

function popGeneral(url, width, height)
    {
        x = window.open(url,"details","scrollbars=no,left=0,top=0,width=" + width + ",height=" + height + ",resizable=no");
    }
    function popSmall(url)
    {
        x = window.open(url,"details","scrollbars=no,screenX=0,left=0,screenY=0,top=0,width=320,height=438,resizable=no");
    }
function popLarge(url)
    {
        x = window.open(url,"details","scrollbars=yes,screenX=0,left=0,screenY=0,top=0,width=600,height=500,resizable=no");
    }
function popXLarge(url)
    {
        x = window.open(url,"details","scrollbars=yes,screenX=0,left=0,screenY=0,top=0,width=760,height=550,resizable=no");
    }
function popPR(url)
    {
        x = window.open(url,"details","scrollbars=yes,screenX=0,left=0,screenY=0,top=0,width=635,height=600,resizable=yes");
    }
	function popExec(url)
    {
        x = window.open(url,"details","scrollbars=yes,screenX=0,left=0,screenY=0,top=0,width=555,height=372,resizable=yes");
    }
function popProdBlock(url)
        {
            x = window.open(url,"details","scrollbars=no,screenX=0,left=0,screenY=0,top=0,width=450,height=450,resizable=no");
    }
function popThanks(url)
    {
        x = window.open(url,"details","scrollbars=yes,screenX=0,left=0,screenY=0,top=0,width=616,height=400,resizable=no");
    }
	function popText(url)
    {
        x = window.open(url,"details","scrollbars=yes,screenX=0,left=0,screenY=0,top=0,width=501,height=318,resizable=no");
    }
function popItCustom(url, width, height)
    {
        x = window.open(url,"details","scrollbars=yes,left=0,top=0,width=" + width + ",height=" + height + ",resizable=yes");
    }
function openBrWindow(theURL) 
{ 
var winName = "Popup";
var features = "scrollbars=yes,width=400,height=300";
  window.open(theURL,winName,features);
}
function close_window() {
    window.close();
}

// END
