// Copyright (C) 1998-2001 NETME-C Infotech & Design Ltd. All rights reserved.

function mover(statusText) {
  if (statusText == "")
    eval("window.status = ''");
  else
    eval("window.status = '"+statusText+"'");
}

function openwin(name, win_width, win_height) {
  window.open(name,"demo","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+win_width+",height="+win_height);	
}

function ranimg(name, ext, img_width, img_height) {
  var now = new Date();
  var num = Math.floor(Math.abs(Math.sin(now.getTime()))*3)+1;
  document.write('<img src="'+name+num+'.'+ext+'" width='+img_width+' width='+img_height+'>');
}

function copyright() {
  document.write('<img src="pic/netme-c.gif" border=0 width=267 height=14>');
}
