function popup_img(imagesrc,title,winwidth,winheight){

    if (document.all){
        var xMax = screen.width, yMax = screen.height;
	}
    else if (document.getElementById){
        var xMax = window.outerWidth, yMax = window.outerHeight;
	}
    else if (document.layers){
		var xMax = window.outerWidth, yMax = window.outerHeight;
	}
    else{
		var xMax = 800, yMax=600;
	}
	
	var xOffset = (xMax - 700)/2, yOffset = (yMax - 540)/2;
	

popwin=window.open('','popup_img','width='+winwidth+',height='+winheight+',toolbar=yes,menubar=yes,location=no,scrollbars=yes,resizable=yes,status=no,directories=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'')
popwin.document.open()
popwin.document.write('<title>Des Alpes - '+title+'</title><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"><table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" align="center"><tr><td width="100%" height="100%" colspan="0" rowspan="0" align="center" valign="middle"><table colspan="0" rowspan="0"><tr><td align="center"><img src="'+imagesrc+'" border="1" style="border-color: White; border-style: outset;"></td></tr><tr><td align="center"><br><b>Des Alpes</b> - '+title+'</td></tr></table></td></tr></table></body>')
popwin.document.close()
popwin.focus()
}
