function Popup(url, w, h) {
	var newWindow;
	var name = Math.floor(Math.random()*10000);
	newWindow=window.open(url, name, 'height='+h+',width='+w+',scrollbars=yes');
	if (!newWindow.opener) newWindow.opener = self;
	
	if (window.focus) {newWindow.focus()}
}

function PPup(page) {
	Popup(WebPath+Language+page, 640, 520);
	return false;
}
