// +----------------------------------------------------------------------+
// | ImageAlbum version 2.0                                               |
// +----------------------------------------------------------------------+
// | Copyright (c) 2002 Joachim Fornallaz                                 |
// +----------------------------------------------------------------------+
// | This source file is subject to the GPL license.                      |
// +----------------------------------------------------------------------+
// | Authors: Joachim Fornallaz <jf@omnis.ch>                             |
// +----------------------------------------------------------------------+

/* $Id: imagealbum.js,v 1.1 2003/01/12 20:14:35 jfornall Exp $ */

function open_window(url) {
	mywin = window.open(url,'win','toolbar=0,location=0,directories=1,status=0,menubar=0,scrollbars=1,resizable=1,width=350,height=350');
}

function confirmToLoadURL(url,text) {
	if(confirm(text) == true)
		location.href=url;
}

function setDisabled(objectID,value) {
	document.getElementById(objectID).disabled = value;
}

function setFocus(objectId){
	if(document.getElementById(objectId))
		document.getElementById(objectId).focus();
}

