
var width,height
var image,ext
var cond1,cond2

function amplia_imatge(image,width,height) 
{
if (width==0) cond1=" "
else cond1="width="+(width+20)+"";
if (height==0) 
{
cond2=" "
}
else 
{
cond2="height="+(height+40)+""
}

var s1 ="<TITLE>Plataforma Antifeixista</TITLE>"
var s12="<link rel='stylesheet' href='css/estils.css' type='text/css'>"	

var s15="<body bgcolor=white>"
var s2 ="<CENTER><IMG SRC='"+image+"' BORDER=0><p>"
var s3 ="<font face=Arial size=-1 color=#000000><a href=javascript:window.close(); class=\"links\">Tancar finestra</a></font>"
var s4 ="</CENTER></body>"

ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars="+scroll+",menubar=no,top=10,left=10,"+cond1+","+cond2);
ImageWindow.document.write(s1+s12+s15+s2+s3+s4)
ImageWindow.document.close()
}
