var timer_start;
function openwindow()
{
	clearTimeout(timer_start);
	Modalbox.show("./popup/jcarousel/details.html", {title: "Съвети за трейдъри",  height: 615, width: 900,closeValue: "Затвори"});
}

function removeTimer()
{
	clearTimeout(timer_start);
}

function hide()
{
	Modalbox.hide();
}

function showBox()
{
	Modalbox.show(document.getElementById("node1"), {title: "НОВО",  height: 330, width: 625,closeValue: "Затвори",overlayOpacity: 0.6, afterHide: removeTimer });
	timer_start = setTimeout("hide()",10000);
}
