function newDoc( href )
{
	var location   = href;
	var winName    = "doc";
	var parameters = "width=818,resizable,scrollbars";
	window.open( location, winName, parameters );
}

function newDocP( href, params )
{
	var location   = href;
	var winName    = "doc";
	var parameters = params;
	window.open( location, winName, parameters );
}

function newPic(src,title,width,height)
{
 var winName = "";
 var size='width='+width+',height='+(height+25)+',resizable,dependent';
 obj=window.open( "", winName, size )
 obj.document.open()
 obj.document.write('\
   <html><head>\
   <title>'+title+'</title>\
   <link rel="stylesheet" href="/css/pics.css">\
   <body>\
   <a href="'+src+'" title="Click to ENLARGE" target=_blank onClick="window.close();">\
   <img src="'+src+'" width="'+width+'" height="'+height+'" border="0">\
   </a>\
   <span class="closeBtn" onClick="window.close()">\
   <img src="/images/close_box.gif">close window</span>\
   </body>\
 ');
 obj.document.close()
}

function newTrans(src,title,trans,width,height)
{
 var winName = "";
 var size='width='+width+',height='+(height+125)+',resizable,dependent';
 obj=window.open( "", winName, size )
 obj.document.open()
 obj.document.write('\
   <html><head>\
   <title>'+title+'</title>\
   <link rel="stylesheet" href="/css/pics.css">\
   <body>\
   <a href="'+src+'" title="Click to ENLARGE" target=_blank onClick="window.close();">\
   <img src="'+src+'" width="'+width+'" height="'+height+'" border="0">\
   </a>\
   <p>' + trans +
   '<p><span class="closeBtn" onClick="window.close()">\
   <img src="/images/close_box.gif">close window</span>\
   </body>\
 ');
 obj.document.close()
}
