function pu_editName(mosConfig_live_site, profileName) {
	overlib('<div style="text-align:justify;padding:4px 5px 4px 5px;"><strong>Edit your Profile URL</strong><br />Make it easier for people to access your profile by creating a short-cut URL to your page.<br />Hint: Profile names must be between 4-16 characters and cannot contain any special characters. They must also start with a character.<br /><br /><strong>'+mosConfig_live_site+'/</strong> <input type="text" name="pu_overlib_newName" id="pu_overlib_newName" maxlength="16" value="'+profileName+'" /><br />&nbsp;<input type="button" class="button" onClick="pu_validate()" value="Select this URL" />&nbsp;&nbsp;<input type="button" class="inputbox" onclick="cClick();" value="Cancel" /></div>', STICKY, CAPTION,'Profile URL', CENTER,CLOSECLICK,CLOSETEXT,'CLOSE',WIDTH,360, ANCHOR,'pu_output',ANCHORALIGN,'LR','UR');
	document.getElementById("pu_overlib_newName").focus();
}

function pu_validate() {
	if (document.getElementById('pu_overlib_newName').value == "") {
		alert('Profile name cannot be empty');
		document.getElementById('pu_overlib_newName').style.backgroundColor = 'red';
		return false;
	}
	document.getElementById('pu_newName').value=document.getElementById('pu_overlib_newName').value;
	cClick();
	pu_sendName();
}
