function PopUp(imgURL)
 {

    var newWindow = window.open(imgURL,"","toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no");
	with (newWindow)
    {
        var contents="<HTML><HEAD><TITLE> Matany </TITLE></HEAD> \
        <BODY BGCOLOR='#FFFFFF' TEXT='#000000' LEFTMARGIN=0 TOPMARGIN=0> \
        <IMG SRC='"+ imgURL +"'onLoad='javascript:window.resizeTo(this.width+10,this.height+30);'> \
        </BODY></HTML>";
        document.open("text/html");
        document.write(contents);
        document.close();
    }
}
