// JavaScript Document
function BigImage(img,w,h)
{
  var obj_window =
window.open(img,"","toolbar=no,directories=no,status = no,resizable=yes,menubar=no,scrollbars=auto,width="+w+"pt, height="+h+"pt");
	obj_window.focus();
}
function Article(img,w,h)
{
  var obj_window =
window.open(img,"","toolbar=no,directories=no,status = no,resizable=no,menubar=no,scrollbars=yes,width="+w+"pt, height="+h+"pt");
	obj_window.focus();
}