function Alert(stURL, stMsg) {
	var blnAlert = window.alert(stMsg);
	
	if (blnAlert) {
		location.href = stURL;
	}

}

