var oldVal=-1;
function linkCodeK(uid)
{
	linkCode(uid, oldVal);
}

function linkCode(uid, img)
{
	var extra="";
/*
	var signed = window.document.getElementById("signed");
	if(signed!=null)
	{
		extra = "&sw=y";
	}
	else
	{
		var sw = window.document.getElementById("sw").checked;
		if( (sw==true) )
		{
			extra = "&sw=y";
			
			doPull("com.spiff.S_EmbedLinks?sw=y", "h");
		}
	}
*/
	if(!img)
	{
		return;
	}


	var code = "<a href=http://www.SpiffBox.com/S/v?id="+uid+extra+"><img src=http://www.spiffbox.com/images/logoLinks/"+img+"></a>";
	window.document.getElementById("code").value=code;
	oldVal = img;
}


function linkCodeHome(img)
{
	var code = "<a href=http://www.SpiffBox.com><img src=http://www.spiffbox.com/images/logoLinks/"+img+"></a>";
	window.document.getElementById("code").value=code;
}



function linkText(uid, num)
{
	var extra="";
	var signed = window.document.getElementById("signed");
	if(signed!=null)
	{
		extra = "&sw=y";
	}
	else
	{
		var sw = window.document.getElementById("sw").checked;
		if( (sw==true) )
		{
			extra = "&sw=y";
			
			doPull("com.spiff.S_EmbedLinks?sw=y", "h");
		}
	}

	var code = "<a href=http://www.SpiffBox.com/S/v?id="+uid+extra+">"+links[num]+"</a>";
	window.document.getElementById("code").value=code;
}
