// JavaScript Document

function showHelp()
{
document.getElementById('help').style.left = (mousePositionX-280)+'px';
document.getElementById('help').style.top = (mousePositionY+2)+'px';
document.getElementById('help').style.display="block";
}

function showHelp1()
{
document.getElementById('help1').style.left = (mousePositionX-60)+'px';
document.getElementById('help1').style.top = (mousePositionY-210)+'px';
document.getElementById('help1').style.display="block";
}
function showHelp4()
{
document.getElementById('help4').style.display="block";
}
function hideHelp()
{
document.getElementById('help').style.display="none";
}
function hideHelp1()
{
document.getElementById('help1').style.display="none";
}
function hideHelp4()
{
document.getElementById('help4').style.display="none";
}
function showHelp2()
{
document.getElementById('help2').style.left = (mousePositionX-385)+'px';
document.getElementById('help2').style.top = (mousePositionY+2)+'px';
document.getElementById('help2').style.display="block";
}
function hideHelp2()
{
document.getElementById('help2').style.display="none";
}

function showFiveStarRating_Home()
{
document.getElementById('rating_inSearchBlock').style.left = (mousePositionX-90)+'px';
document.getElementById('rating_inSearchBlock').style.top = (mousePositionY-410)+'px';
document.getElementById('rating_inSearchBlock').style.display="block";
}
function hideFiveStarRating_Home()
{
document.getElementById('rating_inSearchBlock').style.display="none";
}

function showFiveStarRating_RightPanelSearch(evt)
{
document.getElementById('rating_inRightPanelSearch').style.left = (mousePositionX-350)+'px';
document.getElementById('rating_inRightPanelSearch').style.top = (mousePositionY-405)+'px';
document.getElementById('rating_inRightPanelSearch').style.display="block";
}
function hideFiveStarRating_RightPanelSearch()
{
document.getElementById('rating_inRightPanelSearch').style.display="none";
}

function showFiveStarRating_RightPanelSearchnew()
{
document.getElementById('rating_inRightPanelSearchnew').style.left = (mousePositionX-380)+'px';
document.getElementById('rating_inRightPanelSearchnew').style.top = (mousePositionY+2)+'px';
document.getElementById('rating_inRightPanelSearchnew').style.display="block";
}
function hideFiveStarRating_RightPanelSearchnew()
{
document.getElementById('rating_inRightPanelSearchnew').style.display="none";
}

