function tagFavouriteArtist(creationUserId, action, displayName)
{
if( action =='Yes')
{
	str= "updUsrTagging.php?tagUsr="+creationUserId+"&tag=Yes";
	//tagusr = "tagFavouriteArtist('"+creationUserId+"','No','"+displayName+"')";
	document.getElementById("tagart").innerHTML="<span style='cursor: pointer' class='text2' title='Marked!! Check in My Page'><img id='tag1' src='images/marked.png' border='0' title='marked artist'>&nbsp;</span>";
	//alert(document.getElementById("tagart").innerHTML);
	$.get(str);
}

/**
if( action =='No')
{
	str= "updUsrTagging.php?tagUsr="+creationUserId+"&tag=No";
	action = "Yes";
	tagusr = "tagFavouriteArtist('"+creationUserId+"','Yes','"+displayName+"')";
	document.getElementById("tagart").innerHTML="<span style='cursor: pointer' class='text2' title='Marked!! Check in My Page' onclick=\"" + tagusr + "\"><img id='tag' src=\"images/unmark.png\" border=\"0\" title=\"click to mark artist\"  onmouseover=\"changeImgSrc('tag','over')\" onmouseout=\"changeImgSrc('tag','out')\"/>&nbsp;</span>";
	//alert(document.getElementById("tagart").innerHTML);
}
*/
}

