
function el(e){return document.getElementById(e);}
function hide(e){el(e).style.display='none';}
function showi(e){el(e).style.display='inline';}

function hiderp() {
	hide('resultphoto');
	el('resphotobig').src='/templates/orange/images/white.gif';
}

function showrp(p) {
	if (el('resphotobig').src.indexOf(p)>=0) hiderp();
	else {
		el('resphotobig').src=p;
		showi('resultphoto');
	}
}

function confirmLink(theLink, theText)
	{

    var is_confirmed = confirm(theText);
    if (is_confirmed)
		{
    			if ( typeof(theLink.href) != 'undefined' )
				{
					theLink.href = theLink;
				}
  			  else if ( typeof(theLink.form) != 'undefined' )
				{
					theLink.form.action = theLink;
				}
		}

    return is_confirmed;
	} 
