function swap(id,mode)
{
	try
	{
		var img = document.getElementById(id);
		if(mode==1) img.src=img.src.substr(0,img.src.length-4)+'_o.'+img.src.substr(img.src.length-3,img.src.length);
		if(mode==0) img.src=img.src.substr(0,img.src.length-6)+'.'+img.src.substr(img.src.length-3,img.src.length);
	}
	catch(e)
	{
		var img = document.getElementById(id + '_sp');
		if(mode==1) img.src=img.src.substr(0,img.src.length-4)+'_o.'+img.src.substr(img.src.length-3,img.src.length);
		if(mode==0) img.src=img.src.substr(0,img.src.length-6)+'.'+img.src.substr(img.src.length-3,img.src.length);
	}
}

function TellAFriend()
{
	var loc = '../../../../../../../tell-a-friend/tellafriend.aspx';
	var title = '_blank';
	var props = 'width=280; height=280; left=0; top=0;';
	window.open(loc, title, props);
}
