    function myfunction()
    {
          document.form.submit()
    }
    function ShowImage(id,width,height){
	     window.open(id,"","toolbar=no,left=100,top=80,status=0,titlebar=no,resizable=no,scrollbars=no, location=no, width="+width+",height="+height+"");
    };
    function ShowScrollImage(id,width,height){
	     window.open(id,"","toolbar=no,left=100,top=80,status=0,titlebar=no,resizable=no,scrollbars=yes, location=no, width="+width+",height="+height+"");
    };
    function ShowPopup(id){
	   window.open(id,"","toolbar=no,left=100,top=80,status=0,titlebar=no,resizable=no,scrollbars=no, location=no, width=300,height=200");
    };
