function open_new(FileName,Width,Height,Top,Left,NoRes,NoScr) {

   var str="";

   if ( Width > 0 ) {
      str="width="+Width
   }

   if ( Height > 0 ) {
      str+=str.length > 0 ? ",height="+Height:"height="+Height
   }

   if ( Top > 0 ) {
      str+=str.length > 0 ? ",top="+Top:"top="+Top
   }

   if ( Left > 0 ) {
      str+=str.length > 0 ? ",left="+Left:"left="+Left
   }

   if ( str.length <= 0 ) {
      str="width="+screen.width-30+",height="+screen.height-30
   }

   if ( NoRes > 0 ) {
      str+=str.length > 0 ? ",resizable=0":"resizable=0"
   }
   else {
      str+=str.length > 0 ? ",resizable=1":"resizable=1"
   }

   if ( NoScr > 0 ) {
      str+=str.length > 0 ? ",scrollbars=0":"scrollbars=0"
   }
   else {
      str+=str.length > 0 ? ",scrollbars=1":"scrollbars=1"
   }

   window.open(FileName,"s_win",str);
}

var s = "";
var email = "";

function encript(m0, m1, m2) {

   var m = new Array(m0, m1, m2);
   s = m[0] + "@";
   for(var i = 1; i < m.length; i++) {
      if(i > 1) s += ".";
      s += m[i]
   }
   email = m[0]+'<font class=hidden>_</font>@<font class=hidden>_</font>'+m[1]+'<font class=hidden>_</font>.<font class=hidden>_</font>'+m[2];
}

