window.onload = function()
{
	if (document.getElementById && document.getElementById('workshop'))
	{
		document.getElementById('workshop').onclick = function()
		{
			var workshopWin = window.open(this.href, 'workshopWin', 'left=40, top=10, width=440, height=560, menubar=no, resizable=yes, scrollbars=no, status=yes, toolbar=no');
			if (workshopWin && workshopWin.focus)
			{
				workshopWin.focus();
			}

			return false;
		};
	}
};
