// It appears that IE for the Mac doesn't like to include scripts 

// with capital letters so this script isn't named 'popupVideo.js'



// Opens a popup window titled "title" with an embedded url (video) of width "width" and height "height"

function popupVideo(url, title, width, height) {

	height += 20;											// Increase <embed> height to accomodate the toolbar below movie

	var url = "popupVideo.php?url=" + url + "&title=" + title + "&width=" + width + "&height=" + height;

	width += 30;											// Give a little extra space around the window just to be safe

	height += 75;

	window.open(url, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left = 480,top = 392');

}