
//  Image Windows

function picWin(ref, name) {

	var specs = 'width=450,height=400,menu=no,resizable=no,scrollbars=no';

	newWin = window.open('','',specs);

	with (newWin.document) {
	open();
	write('<html>\n<head>\n<title>StreetMachines - Spezialumbauten</title>');


  	write('</head>\n');
	write('<body bgcolor=\"#ffffff\">\n');

	write('<font face=\"Arial, Helvetica\" size=\"+3\" color=\"#000000\">'+name+'</font>\n<BR>\n');

	write('<IMG SRC=\"'+ref+'\" NAME=\"pic1\">\n');

   write('<br><a href=\"#\" onClick=\"javascript:window.close();\"><img src=\"images/buclose.jpg\" align=\"right\" border=\"0\"></a>');
	write('</body>\n</html>');
	close();

	}
}

function oWin(ref) {

	var specs = 'width=470,height=400,menu=no,status=no,resizable=no,scrollbars=yes';

	ref = 'bikes/' + ref;

	newWin = window.open(ref,'',specs);

}



