/*
 *  REDCODE.DE 3 V3 - popups.js
 *  (C)opyright 2001-2005 REDCODE.DE. All Rights reserved.
 *  Visit us at http://www.redcode.de/
 *  parfecit han 050615
 */
var docpopup;
//var DOCPATH     = "documents/popup.php?doc=";


function launchDoc(docid) {	
	var POPUPWIDTH  = 440;
	var POPUPHEIGHT = 525;

    constraints =  "height=" + POPUPHEIGHT;
    constraints += ",width=" + POPUPWIDTH;
    if (is.min) { constraints += ",left=" + (screen.availWidth - POPUPWIDTH - 150); }
    if (is.min) { constraints += ",top=" + (screen.availHeight - POPUPHEIGHT) * 1/4; }
    constraints += ",scrollbars=no,resizable=no";
    if (is.min) { constraints += ",dependent=yes"; }

    docpopup = window.open("/de/popupver.php?id="+docid, "Popup", constraints);
    docpopup.focus();    
}


function launchHorDoc(docid) {	
	var POPUPWIDTH  = 720;
	var POPUPHEIGHT = 550;

    constraints =  "height=" + POPUPHEIGHT;
    constraints += ",width=" + POPUPWIDTH;
    if (is.min) { constraints += ",left=" + (screen.availWidth - POPUPWIDTH - 150); }
    if (is.min) { constraints += ",top=" + (screen.availHeight - POPUPHEIGHT) * 1/4; }
    constraints += ",scrollbars=no,resizable=no";
    if (is.min) { constraints += ",dependent=yes"; }

    docpopup = window.open("/de/popuphor.php?id="+docid, "Popup", constraints);
    docpopup.focus();    
}


/* End of infopool-popup.js */
