function m_over(x)
{
if(x == null)
x= window;
x.event.srcElement.style.color='#009696';
x.event.srcElement.style.cursor = 'hand';
//x.event.srcElement.style.fontWeight='bold';
}

function m_out(x)
{
if(x == null)
x= window;
x.event.srcElement.style.color = '#000080';
x.event.srcElement.style.cursor = 'default';
//x.event.srcElement.style.fontWeight='normal';
}

function btOver(x)
{
if(x == null)
x= window;
x.event.srcElement.style.background='#FFFFFF';
x.event.srcElement.style.color='#009090';
x.event.srcElement.style.cursor = 'hand';
//x.event.srcElement.style.fontWeight='bold';
}


function btOut(x)
{
if(x == null)
x= window;
x.event.srcElement.style.background='#909090';
x.event.srcElement.style.color = '#FFFFFF';
x.event.srcElement.style.cursor = 'default';
//x.event.srcElement.style.fontWeight='normal';
}

function m_open(x)
{
open(x);
}



////////////

function m_youtube(x)
{
open('http://www.youtube.com/results?search_type=search_videos&search_query=' + x + '&search_sort=video_avg_rating');
}

function m_flicker(x)
{
open('http://www.flickr.com/search/?q=' + x);
}

function m_pandora(x)
{
open('http://www.pandora.com/backstage?type=all&q=' + x);
}

function m_google(x)
{
open('http://news.google.pt/nwshp?ie=UTF-8&oe=UTF-8&hl=pt-PT&tab=wn&q=' + x);
}

function m_technorati(x)
{
open('http://www.technorati.com/search/' + x);
}

function m_wikipedia(x)
{
open('http://pt.wikipedia.org/wiki/Especial:Search?search=' + x);
}

function m_dmoz(x)
{
open('http://search.dmoz.org/cgi-bin/search?search=' + x);
}



