function openVideo(sUrl, sName, sOptions) {
window.open(sUrl,sName,sOptions+',scrollbars=no,resizable=1,top=50,left=50,width=780,height=504');
}

WindowEnabled =  1;
function popUp(URL, ATTRIBUTES)
	//OPEN WINDOW JS
	// takes all attributes in direct format
{
	DEF_ATTRIB = 'width=200,height=200,top=100,left=100,resizable=yes,scrollbars';
	if (ATTRIBUTES == null) ATTRIBUTES = DEF_ATTRIB;
	if (WindowEnabled) {
		child = window.open(URL, "spawn", ATTRIBUTES);
		child.opener = self;
		if	(navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) == '2') {
		// Do Nothing
		} else {
		child.focus();
		}
	} else {
		document.location = MYURL;
	}
}