
function showProperty(prop) 
{
	if (document.getElementById) 
	{
		document.getElementById("picture").src = arrPicture[prop];
		document.getElementById("caption").innerHTML = arrCaption[prop];
		//document.images.picture.src = arrPicture[prop].src;
		return false;
	} 
	else 
	{
		return true;
	}
}

function openEditWindow(target, name)
{
	editWindow = window.open(target, '',"location=1,toolbar=1,status=1,scrollbars=1,width=750,height=500");
	editWindow.moveTo(100,100);
} 

function confirmSubmit(message)
{
	var clickOk = confirm(message);
	if (clickOk)
		return true ;
	else
		return false ;
}





