function popimg(img) {

html = "<html><head><title>La Central del Cabell</title>"+"</head><body style='margin: 0px 0; text-align:center; '>"+"<IMG src='" + img + "' BORDER=0 NAME=image "+"onload='window.resizeTo(document.image.width,(document.image.height))'  onClick='javascript=window.close();' >" +  "</body></html>";

popup=window.open('','image','toolbar=0,location=0,  directories=0,menubar=0, scrollbars=0,resizable=1,statusbar=false, status=false');

popup.document.open();

popup.document.write(html);

popup.document.focus();

popup.document.close();

} 



function popup (url,h,w){

x=(screen.availWidth)
y=(screen.availHeight)-30

posx=(x/2-w/2)
posy=(y/2-h/2)

winprops = 'height='+h+',width='+w+',top='+posy+',left='+posx+',resizable=no, scrollbars=no, status=no'
win = window.open(url, 'Imatgesc', winprops)


win.document.write("<html>\n\n<head>\n<title>La Central del Cabell</title>\n</head>\n\n<body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n<p><img src=\"" + url + "\" width=\"" + w + "\" height=\"" + h + "\" alt=\"-=Tancar la finestra=-\" onClick=\"javascript=window.close();\"></p>\n</body>\n\n</html>");
win.close;
	
  }
  
function popwin (url,h,w){

x=(screen.availWidth)
y=(screen.availHeight)-30

posx=(x/2-w/2)
posy=(y/2-h/2)

winprops = 'height='+h+',width='+w+',top='+posy+',left='+posx+',resizable=no'
win = window.open(url, 'Imatgesc', winprops)


win.close;
	
  }
  
function popvideo(url,h,w){

x=(screen.availWidth)
y=(screen.availHeight)-30

posx=(x/2-w/2)
posy=(y/2-h/2)

winprops = 'height='+h+',width='+w+',top='+posy+',left='+posx+',resizable=no';
win = window.open("video.php?url="+url+"&w="+w+"&h="+h, 'Imatgesc', winprops)


win.close;
	
  }
