﻿//
function downloadLink(lnk)
{
	location.href = lnk;
}
//
function swapImg(img,id)
{
	var divTag = document.getElementById(id);
	divTag.style.backgroundImage = 'url(assets/Buttons/'+ img+')';
}
//
function highlight(tag,flag)
{
	tag.style.borderStyle = (flag)? "solid" : "dashed";
}
//
function contactMe()
{
	var email = "shagarah@gmail.com";
	var subject = "Arabicode Request";
	location.href = "mailto:"+email+"?subject="+subject;
}