function popUp(URL, target) {
	var newWin = window.open(URL, target, "");
	newWin.focus();
	return false;
}


function clearDefaultandCSS(el) {
	if (el.defaultValue==el.value) el.value = ""
	// If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = ""
}

function openCloseDiv(obj) {
	var temp = document.getElementById(obj);
	temp.style.display = temp.style.display != "block" ? "block" : "none";
	return false;
}
