// JavaScript Document
function ClearSearchBox() {
  if(document.searchForm.keywords.value == "search..."){
	  document.searchForm.keywords.value = "";
  }
}

function confirmdelete(url){
	var x=window.confirm("Are you sure you want to delete the record?")
	if (x){
		top.location=url;
	}
	else{
		//window.alert("preview wasnt deleted");
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}