


function popup(pPath, pTitle) { 
    w = window.open("/includes/popup.html?"+pPath+"?" + escape(pTitle), "", "resizable=1,HEIGHT=200,WIDTH=200");
}

function checkPopup() {

    for (i=0; i<document.links.length; i++) {
	    tag = document.links[i];
	    if (tag.className == "Popup")
			    document.links[i].href= "javascript:popup('"+document.links[i].href+"','"+document.links[i].title.replace("'","\'")+"');";
    }
}