/*Fitxer de funcions de tractament d'imatges de Solunova
Creat per AHV el 15.12.2005
Historic de modificacions:

====================================================*/
var ventana;
function solfcambimage(sollsid,sollsimatge){
var solloimatge
solloimatge=document.getElementById(sollsid)
solloimatge.src=sollsimatge 
}
//funcion para maximizar la ventana ya abierta
function solmaxventana(){
	self.moveTo(0,0);
	self.resizeTo(screen.availWidth,screen.availHeight);
}
//Funcion para abrir una ventana maximizada sin barras con la url que se le pasa
function solabreventana(sls$url,sls$ventana){
sls$ara='scrollbars=1,directories=0,menubar=0,resizable=0,status=0,toolbar=0,top=0,left=0,width=';
sls$ara=sls$ara+(screen.availWidth-10)+',height='+(screen.availHeight-20);
ventana=window.open(sls$url,sls$ventana,sls$ara);
ventana.focus();
}
