function openSubWindow(source, width, height, name)
{
	if (!name) {
		name = "BAOBABSubWindow";
	}
	
	try {
		mywin.location.href = source;
		
		if (mywin.document.all) {
			mywin.document.body.clientWidth  = width;
			mywin.document.body.clientHeight = height;
		}
		else {
			mywin.innerWidth  = width;
			mywin.innerHeight = height;
		}
	}
	catch(e) {
		mywin = window.open(source,name,"scrollbars=yes,resizable=yes,menubar=no,firecrories=no,status=yes,location=no,width=" + width + ",height=" + height);
	}
	
	mywin.focus();
}
