function drop_down(my_id) {
	hide_layer(my_id);
	if(	$(my_id).style.display == 'none'){
	Effect.Appear(my_id);
	}
}
function drop_up(my_id) {
	if(	$(my_id).style.display != 'none'){
		Effect.Fade(my_id);
	}
}
function openFormWindow(theURL,winName,features,checkID) {
	var theForm = document.dsgcoreg;
	<!-- Generate all Form Elements and their Values -->
	for(i=0; i<theForm.elements.length; i++){
		var theFields = theFields;
		theFields += theForm.elements[i].name + "=";
		theFields += theForm.elements[i].value + "&";
	}
	<!-- Load the window and pass the form values -->
	for(i=0; i<theForm.elements.length; i++){
		if(theForm.elements[i].type == "checkbox" && theForm.elements[i].id == checkID && theForm.elements[i].checked == true) {
			newWin = window.open(theURL + theFields,winName,features);
			setTimeout('newWin.focus();',250);
		}
	}
}
function openWindow(theURL,winName,features) {
	newWin = window.open(theURL,winName,features);
	/*setTimeout('winName.focus();',250);*/
}