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

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

function fileopen(f, t, w ,h)	{
dW = 10;
dH = 8;
dY = 48;
X = w+2*dW+2;
Y = h+2*dH+dY+2;
win = open("", "_blank", "width="+X+", height="+Y+", left="+((screen.width-X)/2)+", top="+((screen.height-Y)/2)+", 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='#f9fcf9' leftmargin="+dW+" topmargin="+dH+"><img style='border: 1px solid #669933' src="+f+" onClick=window.close()><div style='margin-top: "+dH+"px; text-align: center; font-family: Georgia, serif; font-size: 12pt; color: #336600'>"+t+"</div></body></html>");
}



