function ShowWindow(url, width, height) {
    objMovieWindow = window.open(url, "movieWindow", "width=1000" + width + ", height=700" + height + ", top=0, left=0, status=1, toolbar=1, menubar=1, location=1, directories=1, scrollbars=1, resizable=1"); 
    objMovieWindow.focus();
} 

function setWatched(obj){
	if(obj){obj.className = 'viewedMovie';}
	return false;
}

/* RICKY's VERSION
function ShowWindow(url, width, height) {
    objMovieWindow = window.open(url, "movieWindow", "width=" + width + ", height=" + height + ", top=0, left=0, status=1, toolbar=1, menubar=1, location=1, directories=1, scrollbars=1, resizable=1"); 
    objMovieWindow.focus();
} 

function setWatched(obj){
	if(obj){obj.className = 'viewedMovie';}
	return false;
}*/


/* MODIFIED FOR NO WIDTH/HEIGHT

function ShowWindow(url) {
    objMovieWindow = window.open(url, "movieWindow", "top=0, left=0, status=1, toolbar=1, menubar=1, location=1, directories=1, scrollbars=1, resizable=1"); 
    objMovieWindow.focus();
} 


function setWatched(obj){
	if(obj){obj.className = 'viewedMovie';}
	return false;
}
*/

/* ORIGINAL CODE
function ShowWindow(url, width, height) {
    objMovieWindow = window.open(url, "movieWindow", "width=" + width + ", height=" + height + ", top=0, left=0, status=1, toolbar=1, menubar=1, location=1, directories=1, scrollbars=1, resizable=1"); 
    objMovieWindow.focus();
} 
*/