

//show
function show(foto)
{
window.open(foto,'foto','scrollbars=yes,resizable=no,width=640,height=450,top=10,left=10');
}
//end_show

// link
function link(url,winwidth,winheight)
{
newWindow=window.open(url,'descr','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,top=10,left=10,width='+winwidth+',height='+winheight)
}

// link
function link2(url,winwidth,winheight)
{
newWindow=window.open(url,'descr','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top=10,left=10,width='+winwidth+',height='+winheight)
}


//frame protection
if(top.location!=self.location){top.location.href=self.location}

//Status bar focus
window.status="Mearion International..";

//form handler
function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}



// ----- sag_click -----
/*
if (window.Event)
  document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
	event.cancelBubble = true
	event.returnValue = false;
	return false;
}
function norightclick(e)
{
	if (window.Event)
	{
		if (e.which == 2 || e.which == 3)
			return false;
	}
	else
		if (event.button == 2 || event.button == 3)
		{
			event.cancelBubble = true
			event.returnValue = false;
			return false;
		}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
*/

