function openURL(image){
var txt;
popUpWin = open('', 'popUpWin1', "height=500,width=540,screenY=100,screenX=100,left=100,top=100,scrollbars=yes");
var writeCode = popUpWin.document;
  txt='<title></title>';
  txt+='<link href="style/style.css" rel="stylesheet" type="text/css">';
  txt+='<body bgcolor="E5D8C5" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">';
  txt+='<table width="100%" height="100%" border="0" align="center" cellpadding="3" cellspacing="3" background="images/bodyall.gif">';
  txt+='<tr>';
  txt+='<td>&nbsp;</td>';
  txt+='</tr>';
  txt+='<tr>';
  txt+='<td align="center" valign="top"><img src="'+image+'" class="imageborder"></td>';
  txt+='</tr>'; 
  txt+='<tr>'; 
  txt+='<td align="center">'; 
  txt+='<a href="javascript:window.close();">Close</a>'; 
  txt+='</td>'; 
  txt+='</tr>'; 
  
  txt+='</table>';

  
  writeCode.write(txt); 
  popUpWin.focus();
  writeCode.close();
}


