
var wndPicture = null;

function showPicture(flnm,width,height,strInfo)
{

 wndPicture = window.open('','_','location=no resizable=no,width='+width+',height='+height+',menubar=no,scrollbars=no,status=no,toolbar=no',false );

if(strInfo!=null)
 wndPicture.document.write("<HEAD><TITLE>"+strInfo+"</TITLE>");
else
 wndPicture.document.write("<HEAD><TITLE>"+flnm+"</TITLE>");

// wndPicture.document.write('<LINK REL="stylesheet" HREF="../samples.css" TYPE="text/css"></HEAD>')
 wndPicture.document.write('<BODY bgcolor="#000000" body scroll="no"><CENTER>');

 wndPicture.document.write('<img border=0 src="' + flnm + '">');
 wndPicture.document.write("</CENTER></BODY>");
 wndPicture.document.close();

 wndPicture.focus();

}

function showPictureAndClose()
{
   var n, strFName;

   n = document.location.href.lastIndexOf('/');
   if(n>-1)
    strFName = document.location.href.substring( n+1, document.location.href.length );
   else
    strFName = document.location.href;

   n = document.location.href.lastIndexOf('.');
   if(n>-1)
    strFName = strFName.substring( n+1, strFName.length );
 
  strFName ="art/"+strFName+".jpg";

 var wndPicture = window.open("blank.htm",null,'location=no resizable=no,width=600,height=440,menubar=no,scrollbars=no,status=no,toolbar=no,top=0,left=0');

 wndPicture.document.write("<HEAD><TITLE>"+flnm+"</TITLE>");
// wndPicture.document.write('<LINK REL="stylesheet" HREF="../samples.css" TYPE="text/css"></HEAD>')
 wndPicture.document.write('<BODY bgcolor="#000000" body scroll="no"><CENTER>');

 wndPicture.document.write('<img border=0 src="' + strFName + '">');
 wndPicture.document.write("</CENTER></BODY>");

 window.close();
}

function GetBasePath()
{
 var n,strFName;

 n = document.location.href.lastIndexOf('/');
 if(n>-1)
   strFName = document.location.href.substring( 0, document.location.href.length-n);
 else
   strFName = document.location.href;

 return strFName;
}
