function openWindow(theHTML) {
	var winWidth = '800';
	var winHeight = '680';
	var winScroll = '1';
	var winResize = '1';
	var winTool = '0';
	var winLoc = '0';
	var winMenu = '0';
	var winStatus = '1';
	var winDir = '0';
	
	var winfeatures = 'width='+winWidth+',height='+winHeight+',scrollbars='+winScroll+',resizable='+winResize+',toolbar='+winTool+',location='+winLoc+',menubar='+winMenu+',status='+winStatus+',directories='+winDir;

	var newWindow = window.open(theHTML,'name', winfeatures);
}

function showAddScore(toDo) {
	if (toDo == "open") {
		document.forms[0].add_score.value = "true";
		document.getElementById('addScore').style.display = "block";
		document.getElementById('addScoreHeader').innerHTML = '<a href="javascript:showAddScore(\'close\');">Close</a>';
	}
	else {
		document.forms[0].add_score.value = "false";
		document.getElementById('addScore').style.display = "none";
		document.getElementById('addScoreHeader').innerHTML = '<a href="javascript:showAddScore(\'open\');">Click here to add your score!</a>';
	}
}

/*function setAddItem(itemID) {
	document.forms[0].colRightAddItem.value = '.($colRight_array[$i]["item_order"] + 1).'
	document.forms[0].colRightAddItemID.value = itemID;
}
*/

function toggleFormatting(action) {
	//alert(document.getElementById('fControls').style.display);
	
	if (action == "show") {
		document.getElementById('fControls').style.display = "block";
		document.getElementById('formattingHeadline').innerHTML = '<a href="javascript:toggleFormatting(\'hide\');">Hide Formatting Controls</a>';
	}
	else if (action == "hide") {
		document.getElementById('fControls').style.display = "none";
		document.getElementById('formattingHeadline').innerHTML = '<a href="javascript:toggleFormatting(\'show\');">Show Formatting Controls</a>';
	}
}



/*function picturePop(kind,location) {
	//alert ("running");
	switch(kind) {
		case "vertical":	
			var winWidth = '700';
			var winHeight = '760';
			var winScroll = '1';
			//var site = "http://www.squarepegproductions.com";
			break;
		
		case "horizontal":	
			var winWidth = '800';
			var winHeight = '680';
			var winScroll = '1';
			//var site = "http://www.scme.com";
			break;
			
		default: alert("invalid selection");
	}

	var winResize = '1';
	var winTool = '0';
	var winLoc = '0';
	var winMenu = '0';
	var winStatus = '1';
	var winDir = '0';
			
	var winfeatures = 'width='+winWidth+',height='+winHeight+',scrollbars='+winScroll+',resizable='+winResize+',toolbar='+winTool+',location='+winLoc+',menubar='+winMenu+',status='+winStatus+',directories='+winDir;

	newwindow2=window.open('','name', winfeatures);
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>popup</title>');
	tmp.write('<link rel="stylesheet" rev="stylesheet" href="skin/original/css/master.css" />');
	tmp.write('</head><body>');
	tmp.write('<div align="center"><div style="padding: 80px 10px;"><img src="skin/original/images/pics/'+location+'" alt="" /></div></div>');
	//tmp.write('<p><a href="javascript:self.close()">close</a> the popup.</p>');
	tmp.write('</body></html>');
	tmp.close();
}

function showImages(whichSet) {
	//alert("working");
	if (document.getElementById(whichSet).style.display == 'none') {
		document.getElementById(whichSet).style.display = 'block';
	}
	else {
		document.getElementById(whichSet).style.display = 'none';
	}
}*/
