/* Javascript functions */

/* Alerts */
function leaving_alert(destURL,message) {
alert(message);
window.open(destURL);
}

/* All popup functions */

function PopupContactForm(destURL) {
        window.open(destURL,"pContactForm","width=600,height=480,menubar=no,toolbar=no,location=no,directories=no,resizable=no,status=no,scrollbars=1");
}

/* Function for "regular" mode popup (vertical scrolling, resizing) */
function PopupReg(destURL,pWidth,pHeight) {
        window.open(destURL,"pDisplay","width=" + pWidth + ",height=" + pHeight + ",menubar=no,toolbar=no,location=no,directories=no,resizable=yes,status=no,scrollbars=1");
}

/* end of javascript file */
