function openMovie(player,bandwidth)
{

	   /** start  new code added by David Cho davidcho@us.ibm.com 01-19-2006 **/
  if(player=="Select video player")
	{
		alert("Please choose video player from the dropdown menu.");
		return;
	}
	if(bandwidth=="Select bandwidth")
	{
		alert("Please choose bandwidth from the dropdown menu.");
		return;
	}
	/** end  new code added by David Cho davidcho@us.ibm.com 01-19-2006 **/
	
  if(bandwidth=="low")
   {
  	if(player=="rp")
	 {
		 window.location.href = "/innovation/us/podcasts/videocast/blogging_rpl.shtml";	  		
	  }
	  
	  
	  if(player =="qt")
	  {
	  		
			window.location.href = "/innovation/us/podcasts/videocast/blogging_qtl.shtml";
	  }
	 
	  if(player =="wmv")
	  {
	  		window.location.href = "/innovation/us/podcasts/videocast/blogging_wmvl.shtml";
	  }
   }
   
   if(bandwidth=="high")
   {
  	if(player=="rp")
	  {
	  		window.location.href = "/innovation/us/podcasts/videocast/blogging_rph.shtml";
	  }
	 
	  if(player =="qt")
	  {
	  		window.location.href = "/innovation/us/podcasts/videocast/blogging_qth.shtml";

	  }
	  
	  if(player =="wmv")
	  {
	  		window.location.href = "/innovation/us/podcasts/videocast/blogging_wmvh.shtml";
	  }
   }  
  
 }

 