self.defaultStatus = 'Done';
function addSecureID(linkurl, bSSL) 		
{
	var strURL;
//var bSSL;
//

	if (linkurl.indexOf("?") >= 0) {
		if (bSSL == 1) {
			strURL = "https://" + document.secure_id_form.hidServerName.value + "/" + linkurl + "&";
		}
		else {
			strURL = linkurl + "&";
		}		
	}
	else {
		if (bSSL == 1) {
			strURL = "https://" + document.secure_id_form.hidServerName.value + "/" + linkurl + "?";
		}
		else {
			strURL = linkurl + "?";
		}		
	}

	document.location.href = strURL + "sid=" + document.secure_id_form.secure_id.value;
}
function addSecureIDWithAnchor(linkurl, anchorName) 		
{
	var strURL;

	if (linkurl.indexOf("?") >= 0) {
		strURL = linkurl + "&";
	}
	else {
		strURL = linkurl + "?";
	}

	document.location.href = strURL + "sid=" + document.secure_id_form.secure_id.value + "#" + anchorName;
}

