﻿function WindowPopup(url, width, height)
{
	newwindow=window.open(url,'name','width=' + width + ',height=' + height + '');
	if (window.focus) {newwindow.focus()}
}