var winIndique;

function indique(){

	if(winIndique && !winIndique.closed){
		winIndique.close();
	}

	var strURL = document.frmIndique.url.value;
	var strRevista = document.frmIndique.revista.value;
	var strRevistalink = document.frmIndique.revistalink.value;
	
		w = 400;
		h = 300;
		t = (window.screen.height-h)/2;
		l = (window.screen.width-w)/2;
		
		config = "menubar=0,toolbar=0,resizable=no,scrollbars=no,status=0,location=0,width="+w+",height="+h+",top="+t+",left="+l;
		winIndique = window.open('about:blank', 'popIndique', config);
		document.frmIndique.submit();
		winIndique.focus();
}
