/**
 * Codigos para The cine
 */
 
/**
 * Abre una ventana con la url dada
 */
function abrirPopup(url) {
	
	var w = 793;
	var h = 430;
	
	var migX = w/2;
	var migY = h/2;

	var x = screen.width/2 - migX;
	var y = screen.height/2 - migY;

	valors = 'width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=yes,resizable=no';

	 var winNew = window.open(url,'',valors);
	 winNew.focus();
   


} // abrirPopup


function checkWindowSize(){
		//Determine screen resolution
	    //resolution = screen.width+' x '+screen.height
	    //alert('Your resolution is: ' + resolution);
	    if (parseInt(navigator.appVersion)>3) {
			 if (navigator.appName=="Netscape") {
			  winW = window.innerWidth;
			  winH = window.innerHeight;
			 }
			 if (navigator.appName.indexOf("Microsoft")!=-1) {
			  winW = document.body.offsetWidth;
			  winH = document.body.offsetHeight;
			 }
		}
	    
	    d = document.getElementById('contenedor');
	    
	    if(winW<960){
	    	d.style.width="960px";
	    }else{
	    	d.style.width="100%";
	    }
	    
	    if(winH<580){
	    	d.style.height="580px";
	    }else{
	    	d.style.height="100%";
	    }
}

