<!-- begin hiding script


function checkIfOther(field) {
   if (field && field.options && field.options.selectedIndex > 0) {
	   var url = field.options[field.options.selectedIndex].value;
      if (url == '/help_you/services/') {
		   window.location = url;
	   } else {
			openWindow(url);
      } 
   }
} // checkIfOther


function openWindow(url, width, height) {
   if (!width) {
      width = '530';
   }

   if (!height) {
      height = '600';
   }

   var wnd = window.open(url, 'wnd', 'width=' + width + ',height=' + height +
                         ',left=0,top=0,' +
                         'toolbar=no,resizable=yes,scrollbars=yes');
   wnd.focus();
} // openWindow

// end script hiding-->