/*** Labs JS ***/

function upconts(id) {
	var dv = document.getElementById('labsContent');
	
	dv.innerHTML = "";
	dv.style.display = "none";
	
	if(id == 1) {
		dv.innerHTML = '<img src="1_2.jpg" class="floatl" /> <h1>ISDN Topology</h1> <p>ISDN SPID and port assignments. The lab design is structured to accomodate any type of lab scenario and has been specially designed for the IPExpert lab workbooks. If there is a certain configuration or IOS that you would like preloaded, please notify us before your lab time so that we may have it prepped for you.</p> <p><a href="javascript:void(0);" onclick="javascript:popimg(\'1_3.jpg\');">View Larger Image</a></p>';
		fadr();
	}
	
	else if(id == 2) {
		dv.innerHTML = '<img src="2_2.jpg" class="floatl" /> <h1>Frame Relay Backbone</h1> <p>Frame Relay serial and port assignments. The lab design is structured to accomodate any type of lab scenario and has been specially designed for the IPExpert lab workbooks. If there is a certain configuration or IOS that you would like preloaded, please notify us before your lab time so that we may have it prepped for you.</p> <p><a href="javascript:void(0);" onclick="javascript:popimg(\'2_3.jpg\');return false">View Larger Image</a></p>';
		fadr();		
	}
	
	else if(id == 3) {
		dv.innerHTML = '<img src="3_2.jpg" class="floatl" /> <h1>Logical Rack design</h1> <p>Here is the overall logical network. The lab design is structured to accomodate any type of lab scenario and has been specially designed for the IPExpert lab workbooks. If there is a certain configuration or IOS that you would like preloaded, please notify us before your lab time so that we may have it prepped for you.</p> <p><a href="javascript:void(0);" onclick="javascript:popimg(\'3_3.jpg\');">View Larger Image</a></p>';
		fadr();		
	}
}

function popimg(url) {
	newwindow = window.open(url,'name','height=600,width=800');
	if (window.focus) { newwindow.focus(); }
	return false;
}
