popupImage = function( imageName ) {
    var wndPop = window.open('','popup','width=100,height=100,scrollbars=0'); 
	wndPop.document.write("<html><title>Merungle Alpaca Stud</title><body style='margin:0'><img src='"+imageName+"' onload='window.resizeTo(this.width+30, this.height+74)'></body></html>");
	wndPop.document.close();
    wndPop.focus();
 return true;
}

