function get_url_param2(name)
	{ 
	  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); 
	  var regexS = "[\\?&]"+name+"=([^&#]*)"; 
	  var regex = new RegExp( regexS ); 
	  var results = regex.exec( window.location.href ); 
	  if( results == null )    return ""; 
	  else return results[1];
	}  
 
var portalReturnURL=get_url_param2('portalReturnURL');
var portalReturnURLLabel=get_url_param2('portalReturnURLLabel');
	if (portalReturnURL=='')
	{
	  document.write('<a class="pathreminderstyle" href="/portal/page/portal/FcicntPublic/ElectronicsProductFocus"> > Back to Electronics Product Focus</a>');
	}
	else
	{
	  if (portalReturnURLLabel == null)
		{
		  portalReturnURLLabel = 'Back';
		}
	document.write('<a class="pathreminderstyle" href=' +portalReturnURL+' >' + unescape(portalReturnURLLabel )+'</a>');

	}

