// JavaScript Document

//For Videos

function Popup2(url){   
     newWin = window.open(url, 'Copart', 'width=538, height=510');
     if (window.focus) {newWin.focus()} 
	// window.alert("opening a new window");
}

function PopupLarge(url){   
     newWin = window.open(url, 'Copart', 'width=780, height=710');
     if (window.focus) {newWin.focus()} 
	// window.alert("opening a new window");
}















