// JavaScript functions for the help screens

var childWindow;

// User wants to see suggested text
function showSuggestedText(str) {
	
	var url = '/suggestedText.php?choose=no&type=' + str;
	
	childWindow = myPopWindow(url, 450, 590, 'SuggestedText');
}

function unloadHelp() {
	if (childWindow) {
		childWindow.close();
	}
}

