﻿/**
  * Open an extarnal window on a special position
  */
function OpenWindow( url, caption, x, y, w, h )
{
	myWindow = window.open(url, caption, "top=" + x + ",left=" + y + ",width=" + w + ",height=" + h + ",scrollbars=no");
	myWindow.focus();
}

