/**
* JavaScript to open avi files
*/

function videofile(file) {		
    window.open(file, "x", "resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, width=340, height=270, top=5, left=5")
}
function imagefile(file) {
	window.open(file, "x", "resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, width=615, height=450, top=15, left=15")
}
function commentPopUp(theURL) {
	window.open(theURL,'comments','scrollbars=yes,toolbar=no,resizable=yes,width=420,height=630,top = 50, left=50') 
}

