// JavaScript Document



function popup(url, name, width, height)
{
settings=
"toolbar=no,location=no,directories=no,"+
"status=no,menubar=no,scrollbars=no,"+
"resizable=yes,width="+width+",height="+height;

MyNewWindow=window.open(url,name,settings);
}

// sample
//<a href="#" onClick="popup('xxx.html', 'Win1', 300, 300); return false">
//Click Here To Go to Yahoo</a>
