	function confirmLink(theLink, message) {
	    var is_confirmed = confirm(message);
	    if (is_confirmed) {
	        return '&is_js_confirmed=1';
	    }
	
	    return false;
	} // end of the 'confirmLink()' function 
	
	function openWindow(src, width, height) {
		return window.open(src, 'ax' + height + 'x' + width, 'directories=no, height=' + height + ', width=' + width + ', location=no, menubar=no, scrollbars=no, status=no, toolbar=no, resizeable=no');
		
	}
