  function showpopup(image, text_desc, windowname) {
    msgWindow=window.open("", windowname, 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no, width=600,height=450,left=200,top=120');
    msgWindow.document.write('<html><head>');
    msgWindow.document.write('<title>'+windowname+'</title>');
    msgWindow.document.write('<META NAME="Description" CONTENT="">');
    msgWindow.document.write('<META NAME="Keywords" CONTENT="">');
    msgWindow.document.write('</head>');
    msgWindow.document.write('<body><img src="'+image+'" border="0"><br>');
    msgWindow.document.write('<center><font color="#0000ff"><b><span style="font-size: 15pt;">'+ text_desc +'</span></center>');
    msgWindow.document.write('<div style="text-align:center; padding-top:10px;"><INPUT TYPE="button" VALUE="Close Window"  ONCLICK="javascript:self.close()"></div>');
    msgWindow.document.write('</body></html>');
	msgWindow.document.close();
  }


  function showpopup_2(image, text_desc, windowname) {
    msgWindow=window.open("", windowname, 'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no, width=390,height=660,left=200,top=120');
    msgWindow.document.write('<html><head>');
    msgWindow.document.write('<title>'+windowname+'</title>');
    msgWindow.document.write('<META NAME="Description" CONTENT="">');
    msgWindow.document.write('<META NAME="Keywords" CONTENT="">');
    msgWindow.document.write('</head>');
    msgWindow.document.write('<body><img src="'+image+'" border="0"><br>');
    msgWindow.document.write('<center><font color="#0000ff"><b><span style="font-size: 15pt;">'+ text_desc +'</span></center>');
    msgWindow.document.write('<div style="text-align:center; padding-top:10px;"><INPUT TYPE="button" VALUE="Close Window"  ONCLICK="javascript:self.close()"></div>');
    msgWindow.document.write('</body></html>');
	msgWindow.document.close();
  }
