// JavaScript Document

function popUp(link, lang, label)
{	
	var _target = '_top';
	if (window.top == window.self)
		_target = '_blank';

	newwindow = window.open(link+'?lang='+lang+'&label='+label, "popup", 'height=' + 400 + ', width=' + 600 + ', scrollbars=yes, resizable=yes, menubar=no, location=no');
	if (window.focus) {
		newwindow.focus();
	} 
}
