<!--
function towait() {
  document.body.style.cursor = "wait";
}
//-->

<!--
function todefault() {
  decument.body.style.cursor = "default";
}
//-->

<!--
function setImage(name, src) {
  document.images[name].src = src;
}
//-->

<!--
function setImageElement(name, src) {
  $F(name).src = src;
}
//--> 

<!--
function news_on (type)
{
	var editor = document.getElementById("story_body");
	var nlink = document.getElementById("story_url");

	if (type == 1) {
		nlink.style.display = "none";
		editor.style.display = "block";
	}
	else if (type == 2) {
		nlink.style.display = "block";
		editor.style.display = "none";
	}
	else {
		nlink.style.display = "none";
		editor.style.display = "none";
	}
}
//-->

<!--
function check_search_form (f)
{
  aleart("test");
  if ((f.marketsector.value == 0) && 
      (f.opportunity.value == 0) && 
      (f.keywords.value == "")) {

    alert("Please Choose or Input");
    return false ;

  } else {
    return true ;
  }
}
//-->

