﻿//Author: C. Kimbrough
var newWindow;
function OpenWindow(url)
{
    newWindow = window.open(url,"newWindow","resizable,scrollbars,height=600,width=750",true);
    newWindow.focus();
}



