/**
 * @author mwoodard
 */

/**
 * for watch movie in new window
 */
 
 function watchMovie(URL) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480,left = 345,top = 50');");
    }
	
/**
 * for opening new window
 */

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=920,height=800,left = 345,top = 50');");
	}