function open_movie (url) {
	open_in_window(url,"movie",320,320);
}

function open_in_window(url, windowID, xSize, ySize) {
   sizedWindow = window.open(url,windowID,'width='+xSize+',height='+ySize+'scrollbar=1,resizable=1,toobar=0,menubar=0');
   sizedWindow.focus();
}