
function openDialog(url, width, height, resizable)
{
	var dialogOptions = 'width=' + ( width ? width : 450 ) + ',height=' + ( height ? height : 300 ) + ',status=no,location=no,scrollbars=yes,resizable=' + ( resizable ? 'yes' : 'no' );
	window.open(url, '', dialogOptions);
}
