var newwindow = '';
function popitup(link) {
	if( $(link) && $($(link).id + '-code')) {
		//setTimeout("merchantwindowfocus('"+url+"')", 3000);
		url = $(link).href;
		$($(link).id + '-code').style.display = 'block';
		if (!newwindow.closed && newwindow.location) newwindow.location.href = url;
		else {
			newwindow=window.open(url,'name');
			if (!newwindow.opener) newwindow.opener = self;
		}
		//if (window.focus) {newwindow.focus()}
		//window.focus();
		if(newwindow.focus) window.focus();
	} else alert('code depasse');

	return false;
}

