function myhover(elment,fare,renk,fontu,boyut,altcizgi,kalin) {

elment.style.cursor=fare;

if (renk!="0") 
{
elment.style.color=renk;
}

if (fontu!="0") 
{
elment.style.fontFamily=fontu;
}

if (boyut!="0") 
{
elment.style.fontSize=boyut;
}

if (altcizgi!="0") 
{
elment.style.textDecoration=altcizgi;
}

if (kalin!="0") 
{
elment.style.fontWeight=kalin;
}
}



function trim(stringToTrim)
{
return stringToTrim.replace(/^\s+|\s+$/g,"");
}

