//myCMS JAVA system.js

function NEW_Window(theURL,winName,features) {
  window.open(theURL,winName,features);
}
function AddCodeFromWindow(thecode) {
	opener.document.post.message.value += thecode + " ";
	opener.post.message.focus();
}

