function openEmbedLinkPage(videoID,action,timestamp)
{ 
	if (action=="embed")
	{
		var windowTitle = "Embed";	
		var windowWidth = 400;
		var windowHeight = 103;
	}
	if (action=="link")
	{
		var windowTitle = "Link";	
		var windowWidth = 400;
		var windowHeight = 103;		
	}	
	
	embedWindow=dhtmlwindow.open("viralBox", "ajax", "/news/news_video/embedLink.sfe?id="+videoID+"&action="+action+"&timeStamp="+timestamp, windowTitle, "width="+windowWidth+"px,height="+windowHeight+"px,center=1,resize=1,scrolling=0")
	embedWindow.onclose=function()
	{           
		
		return true 
	} //Run custom code when window is about to be closed
}// JavaScript Document

/*
function copyToClipboard()
{      
		var content = document.embedLinkForm.embedLinkCode;
		content.focus();
		content.select();
		range = content.createTextRange();
		range.execCommand("Copy");
		window.status="Contents copied to clipboard"
		setTimeout("window.status=''",1800)
} 
*/