var pathToPlayer = "/MultiMedia/_PlayPopUp.asp";

function launchVideo(typeToPlay, videoToPlay) {
	
	// what are we doing?  showing a video, flash or audio
	
	if (typeToPlay == "v") {
		
	    var popString = pathToPlayer +
    	    "?vid=" + encodeURI(videoToPlay) + "&height=355&width=520&modal=false&TB_iframe=true";
			
	} else if (typeToPlay == "f") {
		
	    var popString = "/MultiMedia/" + videoToPlay + "?height=600&width=650&modal=false&TB_iframe=true";
		
	} else if (typeToPlay == "a") {
		
	    var popString = "/MultiMedia/" + videoToPlay + "?height=150&width=300&modal=false&TB_iframe=true";		
		
	} else if (typeToPlay == "m") {
		
	    var popString = "/MultiMedia/" + videoToPlay + "?height=400&width=600&TB_iframe=true";		

	}


	tb_show('', 
		popString, 
        '');
	
}