
//Trailer per defecte (només passant id)
function obratrailer(id){
	MM_openBrWindow('/trailers/'+id+'_frame.htm','trailers_win','width=780,height=570');
}

//Trailer amb ressolució (passant id i ressolució d'amplada)
function obratrailer_res(id,res){
	MM_openBrWindow('/trailers/'+id+'_'+res+'frame.htm','trailers_win','width=780,height=570');
}

//Fotograma per defecte (passant id de la pelicula)
function obra_fotograma(id){
	MM_openBrWindow('/fotogramas/'+id+'___0.htm','fotogramas_win','width=625,height=520');
}

//Fotograma per defecte (passant id de la pelicula i num_fotograma)
function obra_fotograma_num(id, num){
	MM_openBrWindow('/fotogramas/'+id+'_'+num+'__0.htm','fotogramas_win','width=625,height=520');
}

function enviar_a(id_seccion, id_contenido){
	MM_openBrWindow('/envios/enviar/'+id_seccion+'/'+id_contenido+'.htm','enviar_a_win','width=415,height=300');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function venta_entradas(enlace)
{
	window.open(enlace,'entradas','');
}

function pagina_oficial(enlace)
{
	window.open(enlace,'website','');
}

function abrir_ventana(url, nombre, width, height, posicionamiento, x, y, scrolls){
	if(posicionamiento=="centrado"){
		x = (screen.width - width)/2;
		y = (screen.height - height)/2;
	}
	open(url, nombre, "width="+width+", height="+height+", screenLeft="+x+", screenTop="+y+", scrollbars="+scrolls);
}
