function wopen(url, name, w, h)
{
// Fudge factors for window decoration space.
 // In my tests these work well on all platforms & browsers.
w += 32;
h += 96;
 var win = window.open(url,
  name, 
  'width=' + w + ', height=' + h + ', ' +
  'location=no, menubar=no, ' +
  'status=yes, toolbar=no, scrollbar=no');
 win.resizeTo(w, h);
 win.focus();
}



function mlivedcode(ctext1 ){
	var ctext2 = unescape(ctext1);
var ctext4 = '';
for(i=0;i<ctext2.length;i++)ctext4+= ctext2.substr(ctext2.length-i-1,1);
var ctext3='';for(i=0;i<ctext4.length;i++)ctext3+=String.fromCharCode(ctext4.charCodeAt(i)- k);
var ctext5 = unescape(ctext3);document.write(ctext5);}

