function u_OpenNewWindow(theURL,winName,features){
	window.open(theURL,winName,features);
}

function MM_openBrWindow(theURL,winName,features){
	window.open(theURL,winName,features);
}

function clearDefault(el) {
        if (el.defaultValue==el.value) el.value = ""
}

function customAlert(message){
	tmpRex = new RegExp("ntsSingleQuote","gim");
	message = message.replace(tmpRex,"'");
	tmpRex = new RegExp("ntsDoubleQuote","gim");
	message = message.replace(tmpRex,'"');
	alert(message);
}
