/* Liens Quick Links du menu*/
function accesrapide(data) {
 	var params = data.toString().split(',');
	var location = params[0];
 	var target   = params[1];
	
	if (location) {	
  	if (target == '_blank') {
			window.open(location);
		} else {
			document.location = location;
		}
	}
}

/*********************************************************/
/* Ouvre le popup d'impression                           */
/*********************************************************/ 
function openImpression(filename) {
	win = window.open(filename, 'Imprimer',"width=603,height=600,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no,directories=no");

	//bug de NN4 quand focus trop vite, attend 0,25 sec

	setTimeout('win.focus();',250);
}


/*********************************************************/
/* Ouvre le popup du cartoon                             */
/*********************************************************/ 
function popupWin(popupName,url,popupWidth,popupHeight) {
	popupDef = window.open(url, popupName,"width=" + popupWidth + ",height=" + popupHeight + ",top=100,left=100,resizable=no,scrollbars=yes,toolbar=no,status=no,location=no,directories=no");
}


/*********************************************************/
/* Ouvre le popup d'envoi a un ami                       */
/*********************************************************/ 
function send_to_friend() {
	window.open('http://scripts.canoe.ca/services/send_friend/send_friend.php?url='+ window.location, 'SendFriend', 'width=301,height=430,scrollbars=no,toolbar=no,menubar=yes,left=15,top=15')
}
