// JavaScript Document
	function greybox(theform)
	{
/*		var T8 = "n/a";
		var T9 = "n/a";    */
			
			if  (theform.copy.checked) {
				theform.T8.value = "n/a";
				theform.T8.disabled = true;
				theform.T9.value = "n/a";
				theform.T9.disabled = true;
			}
			else {
				theform.T8.value = "";
				theform.T8.disabled = false;
				theform.T9.value = "";
				theform.T9.disabled = false;
			}
			
	}
	
/* Calculated in Web Service Now

                    function playlistLimit() {
						if (document.getElementById("playlist-forms")) {
							var totalTracks = document.getElementById("total_items").firstChild.nodeValue;
							var searchBtn = document.getElementById("search-tracks");
							
							if (totalTracks > 50) {
								alert("Playlist track limit reached. \nYou may only enter a total of 50 tracks, \nplease remove any additional tracks over the limit.");
								return false;
							}
							
							else {
								return true;
							}
						}
					}
*/	