function myget(ptr,id) {
		ptr.T_PADDING = 10;
		ptr.T_SHADOWCOLOR = "#fff";
		ptr.T_BGCOLOR = "#EEEEEE";
		ptr.T_SHADOWWIDTH = 3;
		ptr.T_WIDTH = 300;

	 	if (document.getElementById) {
	 		if (document.getElementById(id)) return document.getElementById(id).innerHTML;
		} else if (document.all) {
			if (document.all[id]) return document.all[id].innerHTML;
	  } else
	  	return "";

	}
	
	
function popup(wname) {
	notewin=open(wname,'popup',"toolbar=no,directories=no,menubar=no,scrollbars=yes,width=960,height=650,resizable=yes,screenX=50,screenY=50");

	if (notewin.focus) {
		notewin.focus();
	}
}
