function openInnerWindow(theURL,winName,width,height) {
	var features = "scrollbars=yes,toolbar=no,location=yes,directories=no,titlebar=no,status=yes,menubar=no,resizable=yes,locationbar=no";
	features = features + ",width=" + width + ",height=" + height;
	window.open(theURL,winName,features);
}