function ImageMax(path) {
i1 = new Image;
i1.src = path;
html = '<html><head><title>Indonesia Clubbing</title></head><body style="margin:0" scroll="no" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" onBlur="top.close()"><img src="'+path+'" border="0" name="ImageMax" onLoad="window.resizeTo(document.ImageMax.width+10,document.ImageMax.height+80)"></body></html>';
popupImage = window.open('','_blank','width=100, height=100, status=0,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
}
