function windowOpenSmall(url){
	var winWidth = 800;
	var winHeight = 600;
	var posLeft = (screen.availWidth - winWidth) / 2;
	var posTop = (screen.availHeight - winHeight) / 2;
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',left=' + posLeft + ',top=' + posTop + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no';
	var winlaunch = window.open(url, 'popupwindow', winInfo);
	winlaunch.moveTo(posLeft,posTop);
}

function windowOpenSmallScroll(url, winWidth, winHeight){
	//var winWidth = 600;
	//var winHeight = 250;
	var posLeft = (screen.availWidth - winWidth) / 2;
	var posTop = (screen.availHeight - winHeight) / 2;
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',left=' + posLeft + ',top=' + posTop + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no';
	var winlaunch = window.open(url, 'popupwindow', winInfo);
      winlaunch.creator = self;
	winlaunch.moveTo(posLeft,posTop);
}

function windowOpenSmallScrollbis(url, winWidth, winHeight){
	//var winWidth = 600;
	//var winHeight = 250;
	var posLeft = 150;
	var posTop = 0;
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',left=' + posLeft + ',top=' + posTop + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no';
	var winlaunch = window.open(url, 'popupwindow', winInfo);
      winlaunch.creator = self;
	winlaunch.moveTo(posLeft,posTop);
}

function windowOpenNoScroll(url, winWidth, winHeight){
	//var winWidth = 600;
	//var winHeight = 250;
	var posLeft = (screen.availWidth - winWidth) / 2;
	var posTop = (screen.availHeight - winHeight) / 2;
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',left=' + posLeft + ',top=' + posTop + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
	var winlaunch = window.open(url, 'popupwindow', winInfo);
      winlaunch.creator = self;
	winlaunch.moveTo(posLeft,posTop);
}

function windowMaxSize(url){
	var winWidth = screen.availWidth
	var winHeight = screen.availHeight
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no';
	var winlaunch = window.open(url, 'popupwindow', winInfo);
	
}
function loginwindow(url){
	var winWidth = screen.availWidth
	var winHeight = screen.availHeight
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no';
	var winlaunch = window.open(url, 'popupwindow', winInfo);
	
}
function openWin(theURL,winName,features) {
  	window.open(theURL,winName,features);
}
function intercetta() {
    for (var i=0; i<document.links.length; i++)
        if (document.links[i].className=="blank") {
            document.links[i].target="_blank";
        } 
}
window.onload = intercetta;


