function ShowPopup(url, name, width, height, posX, posY)
{
	var params = 'menubar=no,width=' + width + ',height=' + height + ',screenX=' + posX + ',screenY=' + posY;
	popup = window.open(url, name, params);
	
	if (window.focus)
		popup.focus();
	
	
}

