// JavaScript Document

function OpenWindow(theURL,winName,w,h,features) { //v1
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	window.open(theURL,winName,'height='+h+',width='+w+',top='+wint+',left='+winl+','+features);
}

function clearValue()
  {
   if (document.all || document.getElementById) document.searchMarket.mgSearch.value = '';
  }