
function hide_text(obj){
	
var e1 = document.getElementById(obj);
   if (e1.style.display == "block")
        e1.style.display = "none";
}

function show_all(num_classes){
	var elts = new Array(num_classes);
	for(i=0;i<num_classes;i++){
	    elts[i] = document.getElementById("coursetext"+(i+1));
	    elts[i].style.display="block";
	}
}

function hide_all(num_classes){
	var elts = new Array(num_classes);
	for(i=0;i<num_classes;i++){
	    elts[i] = document.getElementById("coursetext"+(i+1));
	    elts[i].style.display="none";
	}
}
function switch_text(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display == "none" ) {
		el.style.display = "block";
	}
	else {
		el.style.display = "none";
	}
}

function print_me(div_text,div_name,div_stc)
{ 
	var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
		    disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25"; 
		var crs_desc = document.getElementById(div_text).innerHTML;
		var crs_name = document.getElementById(div_name).innerHTML; 
		var crs_stc = document.getElementById(div_stc).innerHTML;
		
		var docprint=window.open("","",disp_setting); 
		    docprint.document.open();
		    docprint.document.write('<html><head><title>Custom Training Course: ');
		    docprint.document.write(crs_name);
		    docprint.document.write('</title>'); 
			docprint.document.write('</head><body style="font-family:Arial, Helvetica, sans-serif;" onLoad="self.print()">');  
			docprint.document.write('<div><img src="images/TopHeader4.gif" align="left" alt="Custom Training">');
			docprint.document.write('<div style="text-align:left; float:right; position:relative; top:15px; line-height:1.3em;"><strong>5580 La Jolla Blvd #411<br />La Jolla, CA 92037</strong><br />(858) 272-3530  FAX (858)272-3507<br /><a href="mailto:info@trainersandteachers.com">info@trainersandteachers.com</a></div>');
			docprint.document.write('</div><center style="border-top: 1px solid #000; clear:both;"><h1 style="font-size:18px; text-decoration:underline;">');
			docprint.document.write(crs_name);
			docprint.document.write('</h1></center>');
			docprint.document.write('<center><strong style="font-size:16px;">');
			docprint.document.write(crs_stc);
			docprint.document.write('</strong></center><p><strong style="font-size:16px;">');
			docprint.document.write(crs_desc);
			docprint.document.write('</strong></p><br />');
			docprint.document.write('<center style="border-top: 1px solid #000;"><p>OUR TRAINERS ARE THE HIGHEST-QUALITY INSTRUCTORS IN THE FIELD. ALL HOLD ADVANCED DEGREES AND ALL ARE SKILLED IN THE ART AND SCIENCE OF ADULT LEARNING. YOU CAN FIND OUT MORE ABOUT THEM, AND REVIEW ALL OUR COURSE DESCRIPTIONS AND SERVICES AT WWW.TRAINERSANDTEACHERS.COM</p></center>');
			docprint.document.write('</body></html>'); 
			docprint.document.close(); 
}


