function ebscoVideoURL(url,id){ 
	var swfObj = new SWFObject("/html/flash/dotVideo.swf", "player", "480", "400", "8", "#000000"); 
	swfObj.addParam("allowfullscreen","true");
	swfObj.addParam("wmode", "transparent");
 	swfObj.addVariable("autostart","false"); 
	swfObj.addVariable("overstretch","false");
	swfObj.addVariable("image","");  
	swfObj.addVariable("width","480");
	swfObj.addVariable("height","400");
	swfObj.addVariable("volume","70");
	swfObj.addVariable("file",url);
	swfObj.write("flashVideo" + id); 
	document.getElementById("playerWrapper" + id).style.display="block";
} 

function ebscoVideoURL2(url,id,width,height){ 
	var swfObj = new SWFObject("/html/flash/dotVideo.swf", "player", "428", "320", "8", "#000000"); 
	swfObj.addParam("allowfullscreen","true");
	swfObj.addParam("wmode", "transparent");
 	swfObj.addVariable("autostart","false"); 
	swfObj.addVariable("overstretch","false");
	swfObj.addVariable("image","");  
	swfObj.addVariable("width",width);
	swfObj.addVariable("height",height);
	swfObj.addVariable("volume","70");
	swfObj.addVariable("file","http://services.epnet.com/animations/"+url);
	swfObj.write("flashVideo" + id); 
	
} 

function closeEbscoPlayer(id){ 
	ebscoVideoURL('none',id); 
	document.getElementById("playerWrapper" + id).style.display="none" 
}