// JavaScript Document

/*
	function protect(e) {
		if (e.which == 3) { 
			alert("No es posible grabar esta imagen.\n\nCreatividad Global"); 
		}
	return false;
	}

	function protegidas() {
	if(document.images)
	for(i=0;i<document.images.length;i++)
	document.images[i].onmousedown = protect;
	}
	

	function right(e) {
		if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
			return false;
		}else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
			alert("Lo sentimos, el botón derecho del ratón está inhabilitado");
			return false;
		}
		return true;
	}
	
	document.onmousedown=right;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=right;


	function protegidas() {
		for (var i=0; i<document.images.length; i++)
		document.images[i].onmousedown=right;
		
		for (var i=0; i<document.links.length; i++)
		document.links[i].onmousedown=right;
	}

*/



	function protect(e) {
	//alert("No es posible grabar esta imagen");
	return false;
	}

	function protegidas() {
	if(document.images)
	for(i=0;i<document.images.length;i++)
	document.images[i].onmousedown = protect;
	}

	function getContinueShoppingURL(form){
		// -- Get the href of the currently displayed webpage -- 
		form.shopping_url.value = window.location.href;
	}
	
	function validaDestino(forms){
		var n = document.forma.destino.selectedIndex;
		var destino = document.forma.destino.options[n].text;
		var valor = document.forma.destino.options[n].value;
			
		if(document.forma.destino.selectedIndex==0){
			alert("Favor de seleccionar el destino para la compra");
			document.forma.destino.focus();
			return false;
		}
		
		if(!confirm("Costo de envio por transacción a:\nDestino '"+destino+"': $"+valor+".00")){
			document.forma.destino.focus();
			return false;
		}
		 forms.handling_cart.value = valor;
		return true;
	}
/*
	function openWindow(pagina) {
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=308, height=365, top=85, left=140";
	my_window= window.open("","",opciones);
	my_window.document.write("<html><head><title>Creatividad Global</title><script type='text/javascript'>function proteger()  { document.images[0].onmousedown = protect; }		function protect(e) { return false;}</script></head><body><img src='"+pagina+"' onMouseOver='proteger()' onMouseMove='proteger()'  onMouseDown='proteger()' onMouseOut='proteger()' onMouseUp='proteger()'></body></html>"); 
	
	}
	
*/
	function openWindow(pagina) {
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=308, height=365, top=85, left=140";
	my_window= window.open("","",opciones);
	my_window.document.write("<html><head><META HTTP-EQUIV='imagetoolbar' CONTENT='no'> <title>Creatividad Global</title><script type='text/javascript'>function protect(e){return false;}function protegidas(){if(document.images)for(i=0;i<document.images.length;i++)document.images[i].onmousedown = protect;}</script></head><body onLoad='OnLoad='protegidas()' oncontextmenu='return false' ondragstart='return false' onselectstart='return false'><img src='"+pagina+"'></body></html>"); 
	}

	function openWindowZonas(pagina) {
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=308, height=365, top=85, left=140";
	my_window= window.open("http://www.creatividadglobal.com.mx/tarifas_zonas.htm","Creatividad global - Tarifa Zonas",opciones);
	}