
	function CloseP()
	{	
		window.close();
	}	
	
	
	
	
	
	///////////	///////////	///////////
	// VButton Stuff
	///////////	///////////	///////////
	var vbutton = null;
	var vbutton_ex = null;
	var DrVideoPopupWindow;
	function VButtonCheck() 
	{
		if (vbutton_ex && vbutton_ex.open && !vbutton_ex.closed) vbutton_ex.close();
	}
	function ShowDrVideoPopupWindow()
	{
		if (DrVideoPopupWindow && !DrVideoPopupWindow.closed) 
		{
			DrVideoPopupWindow.focus()
		}
		else 
		{
			DrVideoPopupWindow = window.open("DrVideoLauncher.htm", "vbutton", "resizeable=no,height=297,width=285");		
		}				
		VButtonCheck();
	}	
	

