
// script apply to all pages.

function winOpen(img)
	{
	newWin = window.open(img, '_blank', 'width=640 height=500 top=10 left=10');
	newWin.document.write('<title>DA Motorcycles</title>');

	newWin.document.write('<link rel="stylesheet" type="text/css" href="styles.css">');
	newWin.document.write('<body style="margin: 0px;">');
	newWin.document.write('<div align="center"><img src="' + img + '"></div>');
	newWin.document.write('<div style="background-color: #353568; text-align: right; padding: 4px 8px 0px 0px; height: 20px;">');
	newWin.document.write('<a	class="headNav" style="padding-left: 5px" href="javascript:window.close()">X CLOSE</a>');
	newWin.document.write('</div>');
	newWin.document.write('</body>');
	}

function winOpen2(img)
	{
	newWin = window.open(img, '_blank', 'width=640 height=375 top=10 left=10');
	newWin.document.write('<title>DA Motorcycles</title>');

	newWin.document.write('<link rel="stylesheet" type="text/css" href="styles.css">');
	newWin.document.write('<body style="margin: 0px;">');
	newWin.document.write('<div align="center"><img src="' + img + '"></div>');
	newWin.document.write('<div style="background-color: #353568; text-align: right; padding: 4px 8px 0px 0px; height: 20px;">');
	newWin.document.write('<a	class="headNav" style="padding-left: 5px" href="javascript:window.close()">X CLOSE</a>');
	newWin.document.write('</div>');
	newWin.document.write('</body>');
	}
	
function showSubLinks()
			{
				if (document.all('newUsed').style.display == "none") {
					document.all('newUsed').style.display = "block";
				}
				else {
					document.all('newUsed').style.display = "none";		
				}
			}