function vdView(hash) 
{  	 	
var direc = './view.php?hash=' + hash;
window.open(direc,'Help','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width=1200,height=500,left=0,top=100,screenX=0,screenY=100');return false;   	 	 
}

function vOpen(type, link) {
	var direc = './view.php?miniview=true&type=' + type + '&url=' + link;
	window.open(direc,'Video','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no,width=1200,height=500,left=0,top=100,screenX=0,screenY=100');
	return false;
}

function checkUncheckAll(theElement) {
	var theForm = theElement.form, z = 0;
	for(z = 0; z < theForm.length; z++){
		if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
			theForm[z].checked = theElement.checked;
		}
	}
}

function populateData(id)
{
	document.getElementById('above_form').innerHTML = document.getElementById(id + '_above').innerHTML;	
	document.getElementById('below_form').innerHTML = document.getElementById(id + '_below').innerHTML;
}

function redirect(url) {
	document.location = url;
	return false;
}
