/**
 * Submits the form with the given id
 */
function submitForm (styleId){
	form = document.getElementById(styleId);
	form.submit();
}