// JavaScript Document
// Written by Fragile Media Ltd (c) 2006
function deleteItem(itemName) {
	if (window.event) window.event.cancelBubble = true;
	return window.confirm("Are you sure you want to delete '"+itemName+"'?");
}
function sendNewsletter() {
	if (window.event) window.event.cancelBubble = true;
	return window.confirm("Are you sure you want to send the current newsletter?");
}
function popUp(strURL) {
	var strOptions="toolbar,status,menubar,scrollbars,resizable,location,height=600,width=800";
	window.open(strURL, 'newWin', strOptions);
	return false;
}
function jumpMenu(targ,selObj,restore){
  eval(targ+".location='pages-cms.php?parentid="+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}