<!--
var codebase;
codebase = "http://www.thekirkwoodgroup.com/";
function popVideo(form){
	// validate selection
    if(form.connection.selectedIndex == 0) { 
		alert('Please select a connection speed.');
		form.connection.focus();
		return false;
	}       
    if(form.player.selectedIndex == 0) { 
		alert('Please select a media player.');
		form.player.focus();
		return false;
	}       
	// video decision
	var URL = null;
	var myWidth = 660;
	var myHeight = 380;
	if(form.connection.value=='modem'){
		if(form.player.value=='qt'){
			URL = "video/lcbo.asp?player=qt&connection=modem";
		}else{
			URL = "video/lcbo.asp?player=rm&connection=modem";
		}
	}else{
		if(form.player.value=='qt'){
			URL = "video/lcbo.asp?player=qt&connection=cable";
		}else{
			URL = "video/lcbo.asp?player=rm&connection=cable";
		}	
	}
	// launch popup
	var tkg = null;
	var specs = null;
	var myLeft = null;
	var myTop = null;
	myLeft = (screen.width) ? (screen.width-myWidth)/2 : 0;
	myTop = (screen.height) ? (screen.height-myWidth)/2 : 0;
	specs = "left="+myLeft+",top="+myTop+",height="+myHeight+",width="+myWidth+",location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no,fullscreen=no";
	tkg = window.open(codebase + URL,"TKG_Video",specs);
	tkg.focus();
	return false;
}
// -->
