/* function to create title attributes and status line mouseovers and set target="_blank" for the Movie Market search box */
function a_101cd_searchbox_changes ()
{
for (var i=0; i<document.forms.length; i++)
	{
	if (document.forms[i].action.indexOf('16214')>-1)
		{
		document.forms[i].target='_blank';
		document.forms[i].title='fill in the box and then click the \'Search\' button to find the DVD or video you want at 101cd';		
		document.forms[i].onmouseover=function(){window.status='fill in the box and then click the \'Search\' button to find the DVD or video you want at 101cd';return true;};		
		document.forms[i].onmouseout=function(){window.status=' ';return true;};
		}
	if (document.forms[i].action.indexOf('17386')>-1)
		{
		document.forms[i].target='_blank';
		document.forms[i].title='fill in the box and then click the \'Search\' button to find the CD you want at 101cd';		
		document.forms[i].onmouseover=function(){window.status='fill in the box and then click the \'Search\' button to find the CD you want at 101cd';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;};
		}
	}
}