// JavaScript Document






	//quote array
	
	quoteList = new Array();
	
	quoteList[0] = "<b>&quot;A picture is worth a thousand words. An interface is worth a thousand pictures.&quot;</b><br>&nbsp;<br>-Ben Shneiderman, 2003";
	quoteList[1] = "<b>&quot;Design is not just what it looks like and feels like. Design is how it works.&quot;</b><br>&nbsp;<br>-Steve Jobbs, 2003";
	quoteList[2] = "<b>&quot;Interactive design [is] a seamless blend of graphic arts, technology, and psychology.&quot;</b><br>&nbsp;<br>-Brad Wieners, 2002";
	quoteList[3] = "<b>&quot;We find that people quickly evaluate a site by visual design alone.&quot;</b><br>&nbsp;<br>-Stanford Guidelines for Web Credibility, 2002";
	quoteList[4] = "<b>&quot;True interactivity is not about clicking on icons or downloading files, it’s about encouraging communication.&quot;</b><br>&nbsp;<br>-Ed Scholssberg, 2002";
	quoteList[5] = "<b>&quot;Good designers can create normalcy out of chaos; they can clearly communicate ideas through the organizing and manipulating of words and pictures.&quot;</b><br>&nbsp;<br>-Jeffery Veen, 2000";
	quoteList[6] = "<b>&quot;The ability to simplify means to eliminate the unnecessary so that the necessary may speak.&quot;</b><br>&nbsp;<br>-Hans Hoffman";
	quoteList[7] = "<b>&quot;Making the simple complicated is commonplace; making the complicated simple, awesomely simple, that's creativity.&quot;</b><br>&nbsp;<br>-Charles Mingus";
	quoteList[8] = "<b>&quot;Good design is the most important way to differentiate ourselves from our competitors.&quot;</b><br>&nbsp;<br>-Samsung CEO Yun Jong Yong, 2004";
	quoteList[9] = "<b>&quot;Truly elegant design incorporates top-notch functionality into a simple, uncluttered form.&quot;</b><br>&nbsp;<br>-David Lewis, 2006";
	quoteList[10] = "<b>&quot;The challenge is about taking things that are infinitely complex and making them simpler and more understandable.&quot;</b><br>&nbsp;<br>-Robert Greenberg";
	quoteList[11] = "<b>&quot;Websites that are hard to use frustrate customers, forfeit revenue and erode brands.&quot;</b><br>&nbsp;<br>-Forrester Research, 1998";
	quoteList[12] = "<b>&quot;When you take technology and mix it with art, you always come up with something innovative.&quot;</b><br>&nbsp;<br>-Robert Rodriguez, 2006";
	quoteList[13] = "<b>&quot;Design can be art. Design can be aesthetics. Design is so simple, that's why it is so complicated.&quot;</b><br>&nbsp;<br>-Paul Rand, 1997";
	quoteList[14] = "<b>&quot;Problems with visual design can turn users off so quickly that they never discover all the smart choices you made with navigation or interaction design.&quot;</b><br>&nbsp;<br>-Jesse James Garrett, 2002";
	quoteList[15] = "<b>&quot;Form follows function-that has been misunderstood. Form and function should be one, joined in a spiritual union.&quot;</b><br>&nbsp;<br>-Frank Lloyd Wright";
	


	
	
	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (quoteList.length));

	if (random_number == quoteList.length){random_number = 0}
	
	
	//set quote
	var quote = quoteList[random_number];
	
	
	
	
	
	
	
	

function popup(url) 
{
 var width  = 803;
 var height = 486;
 var left   = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 var params = 'width='+width+', height='+height;
 params += ', top='+top+', left='+left;
 params += ', directories=no';
 params += ', location=no';
 params += ', menubar=no';
 params += ', resizable=no';
 params += ', scrollbars=no';
 params += ', status=no';
 params += ', toolbar=no';
 newwin=window.open(url,'windowname5', params);
 if (window.focus) {newwin.focus()}
 return false;
}




	
	
	
	
	
	
	
	