// JavaScript Document
function selOn(ctrl) 
{
	ctrl.style.backgroundColor = '#FEF8D6';
}

function selOff(ctrl) 
{
	ctrl.style.backgroundColor = '';
}

function gotoLink(link) 
{
	top.frames['mainframe'].location.href = link;
	return false;
}

function disableForm(theform) 
{
	if (document.all || document.getElementById) 
	{
		for (i = 0; i < theform.length; i++) 
		{
			var tempobj = theform.elements[i];
			if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
			tempobj.disabled = true;
		}	
		return true;
	}
	else 
	{		
		return false;
	}
}

function openwin(id, w, h)
{
	window.open('fotogroot.php?foto='+id+'', '', 'directories=no,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=no,width='+w+',height='+h+'');	
}
function openwinpath(id, w, h, name)
{
	window.open('fotogroot.php?fotopath='+id+'&name='+name+'', '', 'directories=no,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=no,width='+w+',height='+h+'');	
}
function openwinpath2(id, w, h, name)
{
	window.open('fotogroot.php?fotopath='+id+'&name='+name+'', '', 'directories=no,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=no,width='+w+',height='+h+'');	
}

function resizewin(w, h)
{
		window.resizeTo(w+10, h+29);
}
