function OpenWindow(url, width, height) 
{
	wnd = window.open("", 'screenshot', 'width=' + width + ',height=' + height + ',toolbar=no,resizeable=no,status=no,menubar=no,titlebar=no,scrollbars=yes');
    wnd.location = url;
}
