/* function to create title attributes and status line mouseovers and set target="_blank" for the Movie Market search box */
function james_searchbox_changes ()
{
for (var i=0; i<document.forms.length; i++)
	{
	if (document.forms[i].action.indexOf('DestBanner.html')>-1)
		{
		document.forms[i].td_go_button.onclick = function(){alert('clicked');};
		alert (document.forms[i].td_go_button.onclick);

		document.forms[i].title='choose your destination and then click the \'Go\' button to go straight to villas at that destination';		
		document.forms[i].onmouseover=function(){window.status='choose your destination and then click the \'Go\' button to go straight to villas at that destination';return true;};		
		document.forms[i].onmouseout=function(){window.status=' ';return true;};
		}
	}
/*
for (var i=0; i<document.links.length; i++)
	{
	if (document.links[i].href.indexOf('16214')>-1)
		{
		document.links[i].target='_blank';
		document.links[i].title='click here to browse the enormous range of DVDs and videos at 101cd';
		document.links[i].onmouseover=function(){window.status='click here to browse the enormous range of DVDs and videos at 101cd';return true;};		
		document.links[i].onmouseout=function(){window.status=' ';return true;};
		}
	if (document.links[i].href.indexOf('17386')>-1)
		{
		document.links[i].target='_blank';
		document.links[i].title='click here to browse the enormous range of CDs - and more - at 101cd';
		document.links[i].onmouseover=function(){window.status='click here to browse the enormous range of CDs - and more - at 101cd';return true;};		
		document.links[i].onmouseout=function(){window.status=' ';return true;};
		}
	}
*/
}