/* Javascript functions for galeriesas.com */

/* Alerts */
function leaving_alert(destURL,message) {
	alert(message);
	window.open(destURL);
}

/* All popup functions */
/* Function for "display" mode popup (no scrolling, no resizing) */
function PopupDisplay(destURL,pWidth,pHeight) {
        window.open(destURL,"pDisplay","width=" + pWidth + ",height=" + pHeight + ",menubar=no,toolbar=no,location=no,directories=no,resizable=no,status=no,scrollbars=0");
}

/* 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 */
