//*****************************************************
// PLAYERFILMES - Scripts Básicos
//*****************************************************


// Altera a imagem na mesma posição
function PfSwapImg(name,image) 
{
if (document.images) document.images[name].src = image; 
}
			
function swaphotel(name,image,legenda) 	{
	if (document.images) document.images[name].src = image; 
	document.all.objLegenda.innerText = legenda;
}


// Abre popup com tamanho específico
function PfWOpen (file, w, h, scr)
{    
    var F = file
    var W = w
    var H = h
    var S = scr
    var desktop = window.open( ""+F+"", '' , "width="+W+",height="+H+",toolbar=no,location=no,status=no,menubar=no,scrollbars="+S+",resizable=yes" );    
}

