/* Window Opener.  Author Joe McCormack.  Copyright 2003.  All Rights Reserved. www.virtualsecrets.com */
var cmaxwidth, cmaxheight;
function fetch_movie(moviename,width,height) {
/* Open the movie in a popup window */
var mvopenWin; cmaxwidth = document.body.clientWidth; cmaxheight = document.body.clientHeight;
// Find center of screen & positioning
var mvxcenter = (cmaxwidth / 2) - (width / 2);
var mvycenter = (cmaxheight / 2) - (height / 2);
// Show window
mvopenWin = window.open(""+moviename+"","justawindow","top="+mvycenter+",left="+mvxcenter+",width="+width+",height="+(height+15)+",buttons=no,scrollbars=auto,location=no,menubar=no,status=no,directories=no,toolbar=no");
mvopenWin.focus();
}
