<!--
var url, piece, myindex;
if (top == self) { 
	window.location.replace ("http://www.dave-quessy.com/cgi-bin/redirect.cgi?url=" + document.URL);
}

// ------------------------------------------------------
// RIGHT CLICK
// ------------------------------------------------------
document.onmousedown = checkClick
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN)
}

function checkClick(ev) {
	var d = new Date()
	var y = d.getYear()
	if (y < 1000) { y += 1900; }
	var message = "© Dave Quessy, 2001-" + y + "\nTous droits réservés pour tous pays" + "    "
	if (navigator.appName == "Netscape") {
		if (ev.which != 1) {
			alert(message)
			return false }	
	}
	else {
		if (event.button != 1) {
			alert(message)
			return false }
	}
}

// ------------------------------------------------------
// COOKIES
// ------------------------------------------------------
function getCookie(name) {
	var prefix = name + "="
      var cookieStartIndex = document.cookie.indexOf(prefix)
      if (cookieStartIndex == -1) { return null }
	var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
      if (cookieEndIndex == -1) { cookieEndIndex = document.cookie.length }
      return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
}

document.writeln ('<link rel="stylesheet" type="text/css" href="http://www.musico-media.com/style.css" />\n')

document.writeln ('<body background="http://www.dave-quessy.com/images/fond_computer2.jpg" bgcolor="#ffffff" text="#000000" link="#213ba7" vlink="#213ba7" alink="#213ba7">')
document.writeln ('<a name="top"></a><br /><br /><center>')
// -->