﻿// <![CDATA[

function OpenWindow(url, width, height)
{
    var win = window.open(url, '', 'top=100,left=100,width=' + width + ', height=' + height);
    win.focus();
}

// ]]>