function newWindow(link,width,height) {

parameters="";

if(width) {
parameters="width="+width+",height="+height+",scrollbars=yes,resizable=yes";
}

window.open(link,"",parameters);
}
