


//-------------------------------

function NewWindow(url, x, y){var newwin;
var windowFeatures = "width=" + x + ",height=" + y;
newwin = window.open("","tt",windowFeatures);
newwin.location.href = url;
}

//--------------------------------


