/*********************************************************************************************
	popUpImage
*********************************************************************************************/
var newwindow;

function popUpImage(url, title, w, h) 
{
	if (w == null)
	{
		w = 300;
	}
	if (h == null)
	{
		h = 300;
	}
	if (title == null)
	{
		title = "";
	}
	if (newwindow && !newwindow.closed)
	{ 
      newwindow.close();
	}

   newwindow=window.open('','','width=' + w + ',height=' + h + ',resizable=1,resizable=no') 
	
	newwindow.document.writeln('<head> <title>' + title + '<\/title><style>body{margin:0;}</style> <\/head> <body bgcolor=\"white\"> <center>');
	newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
	newwindow.document.writeln('<\/center> <\/body> <\/html>');
	newwindow.document.close();
}

function el(id) {
  if (document.getElementById) {
    return document.getElementById(id);
  } else if (window[id]) {
    return window[id];
  }
  return null;
}

