
// distributed by http://www,hypergurl.com <!-- 


	
//-->
var debug = true; 

function right(e) { 

	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) 

		return false;

	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { 

		alert('no right click please. : )'); 

		return false; 

	} 

	return true; 

} 

document.onmousedown=right; 

if (document.layers) window.captureEvents(Event.MOUSEDOWN); 

window.onmousedown=right; 

	function getImgSize(imgSrc, newSize)
	{
		
		var newImg = new Image();
		newImg.src = imgSrc.src;
		var height = newImg.height;
		var width = newImg.width;
	
		if (width > height) { 
			percentage = (newSize / width); 
		} else { 
			percentage = (newSize / height); 
		} 

		width = Math.round(width * percentage); 
		height = Math.round(height * percentage); 		

		imgSrc.width = width;
		imgSrc.height = height;				

	}
	
	function pasteit(theField) {
		var val = eval("window.document."+theField);
		val.focus();
//		val.select();
		therange = val.createTextRange();
		therange.execCommand("Paste");
	}	// JavaScript Document
	
	

