$(function(){
	$(document).ready(function(){
		$('#sharePage').click(function(e){
			e.preventDefault();
			showPubliguiasShareWindow();
		});
	});	
	
	$.showOverlay = function(title, url){
		$.deleteOverlay = function(){
			$("#overlaymobile").unbind();
			$("#overlaymobile").remove();
		};
		var html = '';
		var width = 492;		
		html+= '<div id="overlaymobile" >';
		html+= '  <div id="bg-overlay" />';
		html+= '  <div id="info-overlay">';
		html+= '    <div class="titlebar"><div class="left" /><div class="center" style="width:' + (width-14-22+1) + 'px;" >' + title + '</div><div class="right" title="Cerrar Ventana" /></div>';		
		html+= '    <div class="info" id="bodyPlayerDiv"><img src="img/preload.gif" class="preload"/></div>';
		html+= '  <div/>';
		html+= '<div/>';
		
		$('body').append(html);
		
		var _contentVideo = getContentVideoToContainerQT(url);
	    insertContentBodyPlayer(_contentVideo);
		
		$("#bg-overlay").bind("click", function(e){
			$.deleteOverlay();
		});
		$("#info-overlay .titlebar .right").bind("click", function(e){
			$.deleteOverlay();
		});
	};

	$("#phone").click(function(){
		window.open('http://talkin.amarillas.cl/talkerPubliguias.html?codigo=c2tpbj1QVUJMSUdVSUFTJmF1ZGlvPUFNQVJJTExBUyZsYW5ndWFnZT1lc19jbA==&componentId=30&locale=es_CL&var1=var1&var2=var2&var3=var3&var4=var4&var5=var5&var6=var6&var7=var7&var8=var8&var9=var9&var10=var10', 'new', 'width=435,height=405,scrollbars=no,titlebar=no,location=no,menubar=no,toolbar=no,resizable=no,fullscreen=no');
	});

	TALKIN_PUBLIGUIAS = {
		openChat : function(url) {
			var windowName = "talkin";
			var width = 320;
			var height = 520;
			var leftVal = (screen.width / 2) - (width / 2);
			var topVal = (screen.height / 2) - (height / 2);
			var param = "width="
					+ width
					+ ",height="
					+ height
					+ ",fullscreen=no,location=no,menubar=no,status=no,toolbar=no,scrollbars=no,left="
					+ leftVal + ",top=" + topVal;
			open(url, windowName, param, "_blank");
		},
		openVoice : function() {
			var url = "http://talkin.amarillas.cl/talker.html?module=publiguias&locale=es_CL&componentId=30&componentId=2&codigo=c2tpbj1QVUJMSUdVSUFTJmF1ZGlvPUFNQVJJTExBUyZsYW5ndWFnZT1lc19jbA==&var1=var1&var2=var2&var3=var3&var4=var4&var5=var5&var6=var6&var7=var7&var8=var8&var9=var9&var10=var10";
			var windowName = "TalkinVoip";
			var width = 320;
			var height = 520;
			var leftVal = (screen.width / 2) - (width / 2);
			var topVal = (screen.height / 2) - (height / 2);

			var param = "toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=no, resizable=no, copyhistory=no,width="
					+ width
					+ ",height="
					+ height
					+ ",left="
					+ leftVal
					+ ",top=" + topVal;
			open(url, windowName, param, "_blank");
		}

	};
});
