// JavaScript Document

//**Section:  Right click**
var sorry=" Website designed by www.mediadiving.co.uk"

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(sorry);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(sorry);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

//**Section: PopupHelper
function help(pageName,height,width)
	{
		var windowLocation  = pageName;
		var features = 'locataion=no,height=' + height + ',width=' + width + ',menubar=no,scrollbars=yes,status=no,toolbar=no,';
		window.open(windowLocation,null,features,null);
	}
function AddFavorite()
{
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) 
									{
									document.write('<a href="javascript:window.external.AddFavorite(url,title);" title="Add us to Your Favorites !"><img src="pics/addfavorite.gif" style="width:20px;height:20px;" alt="add us to your favorites"></a>');
									}
}



