function OnImgTip(f, w, h, s)	{
return Tip('<img src='+f+' width='+w/s+' height='+h/s+'>', BORDERWIDTH, 1, BORDERCOLOR, '#999966', BGCOLOR, '#ffffff', DELAY, 0, FADEIN, 100, FADEOUT, 100, OPACITY, 90);
}

function OnCommentTip(t)	{
return Tip('<div class=comment>'+t+'</div>', BORDERWIDTH, 1, BORDERCOLOR, '#999966', BGCOLOR, '#FFFFFF', DELAY, 0, FADEIN, 100, FADEOUT, 100, OPACITY, 90);
}

function fileopen(f, t, w ,h)	{
dW = 10;
dH = 8;
X = w+2*dW+2;
Y = h+2*dH+48;
win = window.open("", "_blank", "width="+X+", height="+Y+", left="+((screen.width-X)/2)+", top="+((screen.height-Y)/2)+", modal=yes, titlebar=yes, fullscreen=no,  menubar=no, toolbar=no, directories=no, status=no, resizable=no, scrollbars=no, location=no, copyhistory=no");
win.document.write("<html><head><title>"+t+"</title></head><body bgcolor='#ffffff' leftmargin="+dW+" topmargin="+dH+"><img style='border: 1px solid; border-color: #cccccc #666666 #666666 #cccccc' src="+f+" onClick=window.close()><div style='margin-top: "+2*dH+"px; text-align: center; font-family: Times, Serif; font-size: 12pt; color: #666633'>"+t+"</div></body></html>");
}
