function displayPop() {
  document.write('<div id="stickynote" style="position:absolute; width:225px; height:225px; z-index:1; left: 0; top: 0;"><a href="index.php?m=9&p=4" target="_top"><img src="images/note_default.png" border="0"></a></div>');
}

function Close()
{
	var popwin = document.getElementById("stickynote");
	popwin.style.visibility = 'hidden';
}

function ShowPop()
{
	var popwin = document.getElementById("stickynote");
	popwin.style.visibility = 'visible';
}

displayPop();
setTimeout('ShowPop();', 1000);
setTimeout('Close();', 5000);
