/*****************************************************************************
*
*	Common javascript routines
*
*****************************************************************************/

function openImageWindow(prop, pic, width, height)
{
	var w = width + 40;
	var h = height + 50;
	var url = 'fullImage.php?prop=' + prop + '&photo=' + pic;
	var params = 'toolbar=no, location=no, directories=no, status=no, width='+w+', height='+h;
	window.open(url, 'FullImage', params);
}

function submitForm(f)
{
	f.submit();
}					

