﻿var ipay = {
	
	quickfind: function() {
		var element = document.getElementById("quickfind");
		if (element.selectedIndex > 0)
		{
		location = element.options[element.selectedIndex].value;
		}
	} 
}

function videoWindow(videoURL) {
	var win = window.open(videoURL,"","width=460,height=297,status=no,resizable=no,scrollbars=no");
	return;
}