// JavaScript Document
function colorMouseOver(i)
{
	i.style.color = "#FFCC00";
}
function colorMouseOut(i)
{
	i.style.color = "#ffffff";
}

function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}
function clicktocall()
{
var win=window.open('http://www.buynowasia.com/hkl',null,'width=600,height=200,top=100,left=250','false');
}