// JavaScript Document
function newWindow(newpage) {
	windownew = window.open(newpage, 'PopUpWindow', 'width=800,height=600, scrollbars=yes')
	windownew.focus()
}

// random quotes
function generate_quotes() {
	
	var quotes=new Array()
	
	//change the quotes if desired. Add/ delete additional quotes as desired.
	
	quotes[0]='&quot;Their Dubland project looks great and that is exactly how they like it!&quot;<br><br>-Don<br><i><b>Don Westbrook Advertising</b></i>'
	
	quotes[1]='&quot;My Customers loved the banners they ordered!&quot;<br><br>-Faye<br><i><b>Nikos Media &amp; Graphics, LLC</b></i>'
	
	quotes[2]='&quot;Oh boy! You guys are the coolest! Thanks again!&quot;<br><br>-Shira<br><i><b>Post Script Press</b></i>'
	
	quotes[3]='&quot;Yes! Thank you!&quot;<br><br>-Shira<br><i><b>Post Script Press</b></i>'
	
	quotes[4]='&quot;OMG! I Love you!&quot;<br><br>-Shira<br><i><b>Post Script Press</b></i>'
	
	quotes[5]='&quot;I just want to say &acute;MAHALO&acute; for the great job you did on the order we received yesterday. We are very pleased with the output.&quot;<br><br>-Lynn N.<br><i><b>Pacific Sign &amp; Graphics, Inc.</b></i>'
	
	quotes[6]='&quot;I\'ve been doing business with you for the past 5 years. Your prices are very reasonable and the service and quality are excellent!&quot;<br><br>-Steve L.<br><i><b>Fastsigns</b></i><br>Campbell, CA'
	
	quotes[7]='&quot;We got the free banner you sent us, with the beautiful tiger. Thank You! It hangs in our side window.&quot;<br><br>-Linda<br><i><b>Fastsigns</b></i><br>East Hanover, NJ'
	
	quotes[8]='&quot;Just wanted to send you a big &acute;THANK YOU&acute;! Just received the banner and it looks great. I know you jumped through some hoops for us and I really appreciate it. You treat your customers the way we treat ours!&quot;<br><br>-Brenda<br><i><b>Fastsigns</b></i>'
	
	quotes[9]='&quot;I would like to take this opportunity to thank you for your "hustle and hard work" in expediting all the orders for the 2004 Bridgestone Grand Prix of Monterey. The clients are all very very pleased that we came through on time, with beautiful products. Again, thank you!&quot;<br><br>-Merry<br><i><b>Trucksis Ent. Inc.</b></i>'
	
	quotes[10]='&quot;I would like to say I have had nothing but a wonderful experiance working with you as a vendor and that Lisa is the most helpful and cheerful customer service rep I have had contact with in years. It makes doing business with you a pleaseure.&quot;<br><br>-Laura<br><i><b>The Signworks</b></i>'
	
	quotes[11]='&quot;Thank you Rosanna, on a job well done! And please pass on our gratitude to Betty, Greg and all the others involved. We will add you to our vendor list for future projects. Thanks again &amp; have a great day.&quot;<br><br>-Anthony S.<br><i><b>NPS Properties, LLC.</b></i>'
	
	quotes[12]='&quot;Wanted to let you know how pleased we are with the banner. It LOOKS GOOD!!!&quot;<br><br>- Lynn N. <br><i><b> Pacific Sign & Graphics, Inc.</b></i>'
	
	//quotes[13]='&quot;  **content** &quot;<br><br>- **name** <br><i><b> **company** </b></i>'
	
	//quotes[14]='&quot;  **content** &quot;<br><br>- **name** <br><i><b> **company** </b></i>'
	
	//quotes[15]='&quot;  **content** &quot;<br><br>- **name** <br><i><b> **company** </b></i>'
	
	var whichquote=Math.floor(Math.random()*(quotes.length))
	document.write(quotes[whichquote])
}

// make new gallery window

var newContent;
var newWindow;
var pict;
var caption;
var returnToGallery;
var oldBrowser = parseInt(navigator.appVersion) < 4;
var winfeatures = "toolbar=no,location=no,directories=no,status=yes,scrollbars,resizable,left=50,top=50,width=450,height=360";

function makeNewWindow(caption,pict) {
	
	newWindow = window.open("","Example",winfeatures);
	
	if ( !newWindow.opener ) {
		newWindow.opener = window;
	}
	
	
	newContent = "<html><head><title>XLPrints.com</title></head>\n\n"
	newContent += "<body bgcolor='#FFFFFF' text='#000000' link='#999999' vlink='#999999' alink='#000000'><center>"
	newContent += "<table cellpadding='0' cellspacing='0' border='0' width='400'><tr><td style='font-family: Tahoma,arial; font-size: 12px'><a href='javascript:window.close()' ONMOUSEOVER=\"window.status='Return'; return true;\">close</a></td></tr>"
	newContent += "<tr><td style='font-family: helvetica, arial'><br><img src='" + pict + "' border='1'><br><br>" + caption + "</td></tr></table>"
	newContent += "</center></body></html>"
	
	newWindow.document.write(newContent)
	newWindow.document.close()
	
	if ( !oldBrowser  ) {
		newWindow.focus();
	}
}