function pr_pp(surl,id,nwidth,nheight) {
	
	window.open(surl, id, "top=100, left=100,width="+nwidth+",height="+nheight+",resizable=0,scrollbars=1,titlebar=0,menubar=0,location=0,status=0",1);
	
}

function addtofavorities(){
	if (document.all)
		window.external.AddFavorite(location.href,document.title);
	else
		alert('Press Ctrl-D to add this page to favorities.');
}

function cleanit() {
	if (confirm('Remove MS Word formatting?')) {
		var oEditor = oUtil.oEditor;
		//remove html comments
		oEditor.document.body.innerHTML = oEditor.document.body.innerHTML.replace(/<!--((?!-->).)+-->/g, '')
		oEditor.document.body.innerHTML = top.clean(oEditor.document.body.innerHTML)
		//convert unicode characters
		replaceWordCharsInner();
	}
}

