// OPEN NEW WINDOW
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

// CONFIRMATION
function konfirmasi(pesan) {
	var pesan;
	if (confirm(pesan) == true) { 
		return true; 
	}else{ 
		return false;
		window.reload; 
	}
}
// -->

function showPopup(w,h,PopUpID){
	var popUp = document.getElementById(PopUpID);
	popUp.style.top = "80px";
	popUp.style.left = "20px";
	popUp.style.width = w + "px";
	popUp.style.height = h + "px";
	popUp.style.overflow = "scroll";
	popUp.style.border = "1px solid #333333";
	popUp.style.padding = "5px";
	popUp.style.visibility = "visible";
	popUp.style.position = "absolute";
}


function hidePopup(PopUpID){
	var popUp = document.getElementById(PopUpID);
	popUp.style.visibility = "hidden";
}
