/**
 * Configuration for site components javascript
 *
 * Configuration array structure:
 * {<component>: {<parameter>: value, <parameter>: value, ... }, ...}
 */
var siteComponentsConfig = {
    'tooltip': {
        'positionby': 'element' //Valid values: mouse (default), element
     },

    'keywords': {
        'elements': ['placeholder-content'],
        'skiptags': ['h1','h2','h3','h4','h5','h6'],
        'usetooltip': true
    }
    
    /*
    // Use this to override the default fontsizes in the fontsize selector
    // (html/lib/fontsize.js)
    
    'fontsize': {
        'sizes': ["10pt", "15pt", "24pt"]
    }
    */
    
};

function dropdown(mySel) {
	var myWin, myVal;
	myVal = mySel.options[mySel.selectedIndex].value;
		if(myVal) {
   		if(mySel.form.target)myWin = parent[mySel.form.target];
   		else myWin = window;
   		if (! myWin) return true;
   		myWin.location = myVal;
   	}
	return false;
}

