

function popup(url, wide, high)
{
var parameters;
parameters = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=" + wide + ",height=" + high;
newWindow=window.open(url,"newWin", parameters);
}


