﻿//OpenWindow - Open windows and sets the focus to it.
function OpenWindow(location, name,properties){
    var win = window.open(location, name, properties);
    win.focus(); 
    return false; 
}