function openWin(imgName,imgWidth,imgHeight){ 
var winTitle='Bali Holiday Villas Images'; 
var winBg='#D8DDC9'; 
var winProps='height='+imgHeight+', width='+imgWidth; 
var newWin=window.open('','',winProps); 
newWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>'+winTitle+'</title></head>'); 
newWin.document.write('<body bgColor="'+winBg+'"><img src="'+imgName+'" border=0 style="position:absolute;left:0;top:0"></body></html>'); 
newWin.document.close(); 
} 

