//Pop openner
function SpreadFaq() {
	window.open('faq/index.htm','','resizable=yes,width=540,height=430,status=no');
}
function SpreadFly(oid) {
	if (oid=='' || oid==null) {
	  window.open('nest/TEversionCheck.asp',null,'width=820,height=550,resizable=yes,toolbar=no,location=no,scrollbars=no,status=no',false);
	}
	else {
	  window.open('nest/TEversionCheck.asp?oid='+oid,null,'width=820,height=550,resizable=yes,toolbar=no,location=no,scrollbars=no,status=no',false); 
	}
}
function SpreadPop(url,options) { 
	window.open(url,'',options);
}

/*
//Right Click disability
function click(e) {
	if (document.all)
	if (event.button == 2) return false;
	if (document.layers)
		if (e.which == 3) return false;
}
function click2() {
	event.returnValue=false;
	return false;
}
if (document.layers)
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=click;
	document.oncontextmenu=click2;
*/