function create(design_group,design){
	theForm = document.forms["create"];
	theForm.TEMPLATEGROUPID.value = design_group;
	theForm.DOCUMENTID.value = design;
	theForm.submit();
}
function demo(design_group,design){
	theForm = document.forms["demo"];
	theForm.TEMPLATEGROUPID.value = design_group;
	theForm.DOCUMENTID.value = design;
	theForm.submit();
}
