// JavaScript Document
//Pop up Java Script for videos
function popup01(url){
		newwindow=window.open(url,'name','height=500, width=1000, scrollbars=1, resizable=0');
		if (window.focus) {newwindow.focus()}
		return false;
}
function popup02(url){
		newwindow=window.open(url,'name','height=500, width=800, scrollbars=1, resizable=0');
		if (window.focus) {newwindow.focus()}
		return false;
}