
/*
var txtHTML;
function showWindow(title,dispImage,imgDesc)
{

txtHTML = "<html>";
txtHTML = txtHTML +  "<head>";
txtHTML = txtHTML +   "<title>" + title + "</title>";
txtHTML = txtHTML +   "<link rel='stylesheet' href='../images/hal.css' type='text/css'>";
txtHTML = txtHTML +   "</head>";
txtHTML = txtHTML +   "<body bgcolor='#FFFFFF' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>";
txtHTML = txtHTML +   "<div align='center'>";
txtHTML = txtHTML +   "<br>";
txtHTML = txtHTML +   "<img src='" + dispImage + "' width='433' height='309' align='middle'>";
txtHTML = txtHTML +   "<br>";
txtHTML = txtHTML +   "<span class='darkblue10'>" + imgDesc + "</span><br><br>";
txtHTML = txtHTML +  "<img src='../images/linkbullet1.gif' width='7' height='7'><a href=javascript:window.close() class='textlink1'> Close </a> ";
txtHTML = txtHTML +  "</div>";
txtHTML = txtHTML +  "</body>";
txtHTML = txtHTML + "</html>";
var mywindow=window.open('',"_blank",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=550 height=400,resizable=0,left=100,top=100');
mywindow.document.write(txtHTML);
}*/

function showwindow(url)
{
mywindow=window.open(url,"0",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=550 height=400,resizable=0,left=100,top=100');

} 

