<!-- 

// ARRAY FUNCTION

function makeArray(len) {

        for (var i= 0; i < len; i++) this[i] = null;
        this.length = len;
        }

// CREATE ARRAY
        
var quote = new Array();

quote[0] = '<p>I take them at their word. Every time they say they\'re going to do something they do it. My experience has been that when they need to make a decision they do it in an honorable, ethical manner that benefits the entrepreneur.</p><p class=\"attrib\">Bill Miller, CEO & President<br />Valchemy</p>';

quote[1] = '<p>The partners at Opus are extremely well connected in the valley and the industry. They never hesitate to use their networks to help the companies in which they invest. Whether these companies need mentors who have run similar businesses, or business partners to help get them to market faster, the Opus partners are great catalysts.</p><p class=\"attrib\">Fred Rosenzweig,<br />President<br />EFI</p>';

quote[2] = '<p>From a repeat entrepreneur\'s point of view, the Opus team brings four characteristics that are most important to us: operating experience, good judgment, new ideas and excellent industry contacts.</p><p class=\"attrib\">Marketta Silvera, CEO<br />Apptera</p>';

quote[3] = '<p>Having started four successful companies, I knew I wanted someone with considerable operating experience in our technology space. With Carl, I get deep understanding and wisdom about the issues I face. Given his real world experience, he understands the complexities and dynamics of my market.</p><p class=\"attrib\">Richard Bush,<br /> Chairman & Founder<br />Identity Engines</p>';

quote[4] = '<p>The Opus partners have a long term view. They are here to stay, to do what it takes to help us build a successful company.</p><p class=\"attrib\">Anthony Ley, Chairman,<br />CEO & President<br />Harmonic</p>';

quote[5] = '<p>Gill is more visionary than most investors. He and his partners won\'t invest unless they understand the vision but once they do it\'s their vision too. Gill makes a very smart board member and he and his partners are great operators.</p><p class=\"attrib\">Roger Sippl, Chairman<br />Above All Software<br />Co-founder & Former CEO, Informix<br />Founder, Vantive and Visigenic</p>';





// RANDOM NUMBER GENERATOR

function rand(n) {

        seed = (0x015a4e35 * seed) % 0x7fffffff;
        return (seed >> 16) % n;
        }
        
        var now = new Date();
        var seed = now.getTime() % 0xfffffff


function nospam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

// DROPDOWN MENUS 

function dropabout() {
	document.getElementById('sub-about').style.visibility='visible';
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-approach').style.visibility='hidden';
	document.getElementById('sub-investments').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';	
	}

function dropteam() {
	document.getElementById('sub-about').style.visibility='hidden';
	document.getElementById('sub-team').style.visibility='visible';
	document.getElementById('sub-approach').style.visibility='hidden';
	document.getElementById('sub-investments').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';	
	}

function dropapproach() {
	document.getElementById('sub-about').style.visibility='hidden';
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-approach').style.visibility='visible';
	document.getElementById('sub-investments').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';
	}

function dropinvestments() {
	document.getElementById('sub-about').style.visibility='hidden';
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-approach').style.visibility='hidden';
	document.getElementById('sub-investments').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';	
	}

function dropnews() {
	document.getElementById('sub-about').style.visibility='hidden';
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-approach').style.visibility='hidden';
	document.getElementById('sub-investments').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='visible';
	}
	
function nodrop() {
	document.getElementById('sub-about').style.visibility='hidden';
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-approach').style.visibility='hidden';
	document.getElementById('sub-investments').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';	
	}


// -->
