// Open a new window for Google video
// Preset to a certain width and height

// HOW TO USE:
//
// 1. Include this file in the HTML page's <head> with this code:
//
//		<script language="javascript" src="/includes/javascript/google-video.js"></script>
// 
// 2. Supply appropriate HTML for the link to the video, somewhere in the <body>:
//
// 		<a href="javascript:videoWindow('[Google video ID]')">View Video</a>
// For example:
// 		<a href="javascript:videoWindow('-7868262645846843151')">View Video</a>

function videoWindow(id)
{
 	url = "http://www.ananda.org/inspiration/streaming/google-videos.asp?id=" + id;    
      oWindow=window.open(url,"Video","toolbar=no,width=430,height=350,directories=no,status=no,scrollbars=no,resize=yes,menubar=no");
      oWindow.focus();
	  
}

        
        