-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsynthkits.html
executable file
·123 lines (95 loc) · 3.42 KB
/
synthkits.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Voltage Synth Kits</title>
<LINK REL=StyleSheet HREF="styles.css" TYPE="text/css" MEDIA=screen>
<script language="javascript">
function microsoftkeypress(){
// alert("key pressed:" + event.keyCode);
unitedbrowserkeypress(event.keyCode);
}
function nutscrapekeypress(e)
{
// alert("key pressed:" + e.which);
unitedbrowserkeypress(e.which);
}
//deal with netscape b.l.u.
if(navigator.appName == "Netscape"){
document.captureEvents(Event.KEYPRESS);
document.onkeypress = nutscrapekeypress;
}
else document.onkeypress = microsoftkeypress;
function unitedbrowserkeypress(keyPressed){
//document.write(keyPressed);
if((keyPressed == 97) || (keyPressed == 65)){ //a
window.open("Wundernoise041306.asm");
}
else if((keyPressed == 104) || (keyPressed == 72)){ //home
document.location = ("index.html");
}else if((keyPressed == 115) || (keyPressed == 83)){ //solder movie
window.open("soldering_tutorial.mov");
}
else if((keyPressed == 109) || (keyPressed == 77)){ //manual
window.open("Who_Got_A_Big_Ol_Manual.pdf");
}
else if((keyPressed == 116) || (keyPressed == 84)){ //t b immaculate
//document.location = ("voltagetb.html");
}//endif
}//end onkeypress
</script>
<LINK REL=StyleSheet HREF="tb_cv.css" TYPE="text/css" MEDIA=screen>
</head>
<body>
<div id="divTelnet">
<div id="divHeader">
Who Got A Big Ol' Butt Synthesizer Kits!
</div>
<div id="divVobis">
VOBIS
</div>
<div id="divScrollContainer">
<!-- begin absolutely positioned scrollable area object-->
<div id="divScrollContent" style="font-size:90%">
<p style="padding-left:50px;padding-right:50px">
6/06
<br />
Because Voltage has the love:
Hard to listen to art-rock electronics are now within range of the everyman.
<br/><br/>
We designed a new digital synthesizer specifically geared towards noise
heads who are interested in learning more about electronics theory and
design, all while making ears bleed! Designed with circuitbending and
expansion in mind as well, the beast runs on batteries or wall warts, comes
complete with manual and instructional video, and measures less than 2x2".
Currently she runs $30 plus shipping.
Please let us know if you've got any questions or are interested in picking
up a kit.
</p>
<table style="font-size:100%">
<tr>
<td><a href="Who_Got_A_Big_Ol_Manual.pdf" target="new">M ></a></td>
<td>Who Got A Big Ol' Butt? Manual (.pdf -- 10MB)</td>
</tr>
<tr>
<td><a href="soldering_tutorial.mov" target="new">S ></a></td>
<td>Soldering tutorial movie (.mov -- 4MB)</td>
</tr>
<tr>
<td><a href="Wundernoise041306.asm" target="new">A ></a></td>
<td>Source code (.asm -- 43KB)</td>
</tr>
</table>
</div><!-- end divScrollContent -->
</div><!-- end divScrollContainer -->
<div id="divFooter">
<a href="index.html">H ></a> Home <br>
what the f (H, M, S, A, M)
<img src="cursor.gif" width="7" height="13">
</div>
</div> <!-- end divTelnet -->
<div class="adendum">
<h4 >The Beast Herself</h4>
<p class="centeredImage"><img style="border: 2px #ffffff ridge;" width="338" height="281" src="kit_assembled_close_cropped_small.jpg" alt="the kit itself"/></p>
</div>
</body>
</html>