﻿var aWindow;
function OpenPopupWindow(name, url, width, height) { var winl = (screen.width - width) / 2; var wint = (screen.height - height) / 2; aWindow = window.open(url, name, 'width=' + width + ', height=' + height + ', left=' + winl + ', top=' + wint + ', resizable=yes, scrollbars=yes, toolbar=no, menubar=no, location=no, status=yes, directories=no'); if (window.focus) { aWindow.focus() } }
function ValidateCheckboxes(container) { var IsValid = false; $(container).each(function() { if (this.checked) { IsValid = true } }); return IsValid }
