function showpic (file,w,h,title) 
{
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=no";
	myWin= open("", name,win);
	myWin.document.open();
	myWin.document.write("<html><head><title>"+title);
	myWin.document.write("</title></head><body topmargin=0 leftmargin=0 bottommargin=0 rightmargin=0>");
	myWin.document.write("<img src='"+file+"' width="+w+" height="+h+" border=0 alt='"+title+"'>");
	myWin.document.write("</body></html>");
}

function newwin(file, width, height)
{
    window.open(file, 'newwin', 'width='+width+', height='+height+', scrollbars=no, dependent=yes, resizable=no');
}

function newwin2(file, width, height)
{
    window.open(file, 'newwin', 'width='+width+', height='+height+', scrollbars=yes, dependent=yes, resizable=yes');
}