/*
Functions to pop windows for playing quicktimes in the Picrow reel
Feb 3, 2009
*/
function clipWindow(clip,winid) {
  reelclip_window =
    window.open(clip,winid,"menubar,width=535,height=415,top=yes,resizeable=no");
    reelclip_window.focus();
}
function Play480Window(clip,winid) {
  reelclip_window =
    window.open(clip,winid,"width=500,height=410,resizeable=no,left=320,top=50");
    reelclip_window.focus();
}
function Play720Window(clip,winid) {
  reelclip_window =
    window.open(clip,winid,"width=740,height=482,top=yes,resizeable=no,left=320,top=50");
    reelclip_window.focus();
}
function Play640Window(clip,winid) {
  reelclip_window =
    window.open(clip,winid,"width=660,height=530,top=yes,resizeable=no,left=320,top=50");
    reelclip_window.focus();
}
