function FullSize(w,h,uri,name){
	uri = "/fullsize" + uri;
	var scroll = "no";
	if(h > screen.height-28) {scroll= "yes"; w = w+17;};
	win = window.open(uri,name,'status=yes,toolbar=no,menubar=no,scrollbars='+scroll+',resizable=no,width='+w+',height='+h);
	win.focus();
}

function OpenWindow(w, h, uri, name, scrollbars){
	win = window.open(uri,name,'width='+w+',height='+h+',status=yes,menubar=no,resizable=yes,scrollbars='+scrollbars);
	win.focus();
}