
function openSubwinA(name,src,width,height) 
 {
     wpars='status=0,toolbar=0,location=0,menubar=0,directories=0,scrollbars=0,resizable=0,dependent=1,width='+width+',height='+height;
	newwindow=window.open(src,name,wpars);
	if (window.focus) {newwindow.focus()}
 }

function openSubwinB(name,src,width,height) 
 {
     wpars='status=0,toolbar=0,location=0,menubar=0,directories=0,scrollbars=1,resizable=1,dependent=1,width='+width+',height='+height;
	newwindow=window.open(src,name,wpars);
	if (window.focus) {newwindow.focus()}
 }

