//michelle@rabidgenius.com:  one template movie window for all movie clips
function open_movie_viewer(width, height, filename, filesize){
	window_height = parseInt(height) + 150;
	window_width = parseInt(width) + 60;
	window.open("movie_viewer.asp?obj_width=" + width + "&obj_height=" + height + "&filename=" + filename + "&filesize=" + filesize,"","height=" + window_height + ",width=" + window_width + ",left=0,top=0");
}

/*
michelle@rabidgenius.com:  
- pulled this function from various pages and tweaked it to
  accept parameters so that it can be used by any page.
*/
function view(width, height, image_name) {
var file_name="image_viewer.asp?image=" + image_name;
window.open(file_name,"","height=" + height + ",width=" + width + ",left=0,top=0");
}