/*
	Right-click
*/



function ClearVuRight_onmousedown() {
var theMsg;
theMsg = 'Please contact ClearVu for permission to use these images.';

if (event.button==2) {
	alert(theMsg);
	window.open('http://www.clearvucanada.com/ContactUs.html');
}
}


/*
	out of frames
*/



if (self.location.href != top.location.href) 
{
top.location.href = self.location.href;
}

