
<!-- Botón derecho del mouse -->

function derecha(e) {
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
		alert('All rights reserved. Copyright contactpanama.com 2005')
		return false;	
	} else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
		alert('All rights reserved. Copyright contactpanama.com 2005')
	}
}
document.onmousedown = derecha ;

/*PopUP image Window*/
function openWin(theURL, winName, features, myWidth, myHeight) { 	
	if(window.screen){
		var myLeft = (screen.width-myWidth)/2;
		var myTop = (screen.height-myHeight)/2;
		features+=(features!='')?',':'';
		features+=',left='+myLeft+',top='+myTop;
	}
	features += ((features!='')?',':'')+'width='+myWidth+',height='+myHeight
	window.open(theURL, winName, features);  
}


function viewImage(image,winName,features) { 
  var view = 'templates/view.php?image=' +image ; 
  window.open(view,winName,features);
}


