function newWindow(link,width,height) {

content="";

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

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