/*var isExit = true
var links = document.getElementsByTagName('a');

function ClaerLinks()
{
	for(i =0; i< links.length; i++)
	{

		if(links[i].onclick == null) // check that we not overide the existig onclick event function
		{
		   links[i].onclick= function shutPopup1()
		   {
			isExit = false;
		   }
		}

	}
}

window.onload = ClaerLinks;
window.onunload = popExit;
function popExit()
{
    if (isExit)
    {
        window.open("http://www.5300.co.il/articles/fast/", "5300", "width=800,height=600,left=100,top=25,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes");
    }
    isExit = false;
}
*/
