if (top.location != location) top.location.href = document.location.href;
function copyurl(id)
{
	document.getElementById(id).select();
	if (!window.clipboardData)
	{
		alert('Please press "Ctrl+C" to copy.');
	}
	else
		window.clipboardData.setData("text",document.getElementById(id).value);
}
try
{
	var href=location.href.replace("'","&#039;");

	var urlaward=document.getElementById('urlaward');

	if (urlaward)
	{
		urlaward.value=urlaward.value.replace("'http://www.softsea.com/'","'"+href+"'");
		urlaward.value=urlaward.value.replace(".jpg",".gif");
	}

	var urlclean=document.getElementById('urlclean');

	if (urlclean)
	{
		urlclean.value=urlclean.value.replace("'http://www.softsea.com/'","'"+href+"'");
		urlclean.value=urlclean.value.replace(".jpg",".gif");
	}

	var urltext=document.getElementById('urltext');

	if (urltext)
	{
		urltext.value=urltext.value.replace("'http://www.softsea.com/'","'"+href+"'");
		
		var title=document.title;
		
		var pos=title.indexOf("Review and Download");
		if (pos>0)
		{
			var title1=title.substring(0,pos-1);
			if (title1!="")
			{
				title=title1;
			}
		}

		//urltext.value=urltext.value.replace("&gt;www.softsea.com&lt;","&gt;"+title+"&lt;");
		urltext.value=urltext.value.replace(">www.softsea.com<",">"+title+"<");
	}
}catch(e){}
