July 14, 2006
stein hoist: Ace
Posted by: Vinnie at
12:00 AM
| Comments (11)
| Add Comment
Post contains 15 words, total size 1 kb.
Posted by: lht at July 14, 2006 02:21 AM (3X4o7)
div.lm_tipBox{
position:absolute;
width:400px;
height: 244px;
z-index: 10000000;
border: 1pt black solid;
background: #ffffff;
visibility: hidden;
}
function lm_div_mouseOut(){ self.lm_isOverTip = false; }
function lm_div_mouseOver() { self.lm_isOverTip = true; }
function lm_handle_onFocus(){
self.lm_div_cur=(Math.round((Math.random()*9)+1));
}
if (window.captureEvents)
window.captureEvents(Event.FOCUS);
window.onFocus = lm_handle_onFocus();
function lm_displayContents(tip) {
var el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(!el) {
if(window.self.frames.length)
el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
}
if(el) {
el.innerHTML=tip;
lm_setPosition(el); lm_adjustBox();
var tip = self.document.getElementById(self.lm_skeyphrase);
if(tip) {
tip.style.visibility='visible';
tip.style.visibility='hidden';
}
setTimeout('lm_showDiv()', 3);
}
}
function lm_adjustBox() {
var el=self.document.getElementById('lm_tipBox'+self.lm_div_cur);
var tip = document.getElementById(self.lm_skeyphrase);
if(el) {
if(document.body.clientWidth < (el.style.pixelLeft+el.offsetWidth)) {
var pos = (el.style.pixelLeft-el.offsetWidth);
if(pos > 0)
el.style.pixelLeft = pos;
}
else if((el.style.pixelLeft-el.offsetwidth) < document.body.scrollLeft) {
el.style.pixelLeft = el.styel.pixelLeft + el.offsetWidth;
}
if((document.body.offsetHeight+document.body.scrollTop) < (el.style.pixelTop+el.offsetHeight)) {
var pos = (el.style.pixelTop-el.offsetHeight-15);
if(pos > (document.body.scrollTop))
el.style.pixelTop = pos;
}
else if(el.style.pixelTop < document.body.scrollTop) {
el.style.pixelTop = el.style.pixelTop + el.offsetHeight + 15;
}
}
}
function lm_showDiv() {
if(self.lm_isOverTip || self.lm_isOverLink) {
var tip=self.document.getElementById(self.lm_skeyphrase);
var el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(!el){ el = self.document.getElementById('lm_tipBox'+self.lm_div_cur); }
if(el) {
lm_adjustBox();
if(self.isReady==true && tip){
tip.style.visibility='visible';
el.style.visibility = 'visible';
lm_closeiframe();
}
else { setTimeout('lm_showDiv()', 3) }
}
}
}
function lm_getOffset(el, which) {
var amount = el['offset'+which];
if (which=='Top')
amount+=el.offsetHeight;
el = el.offsetParent;
while (el!=null) {
amount+=el['offset'+which];
el = el.offsetParent;
}
return amount;
}
function lm_setPosition(el) {
if(window.event) {src = window.event.srcElement;} else{ var src = self.lm_sevent; }
el.style.pixelTop = lm_getOffset(src, 'Top');
if( self.name && (self.name != 'opener')) { el.style.pixelLeft += 15; }
el.style.pixelLeft= lm_getOffset(src, 'Left');
}
function lm_getFrameSize(){
var el = document.getElementById('lm_tipBox'+self.lm_div_cur);
var tip= document.getElementById(lm_skeyphrase);
if(el && el.style) {
el.style.width=tip.style.width;
el.style.height=tip.style.height;
}
}
function lm_doMouseOver(showBox) {
var el = document.getElementById('lm_tipBox'+self.lm_div_cur);
if(!el)
self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(el) if(el.style) { if(showBox) el.style.visibility='visible'; }
var query = self.lm_skeyphrase;
if(self.lm_isOverTip == true)
return false;
self.lm_isOverTip = true;
var tip=document.getElementById(query);
if(tip && (query == self.lm_last_query)) {
setTimeout('lm_showDiv()',10);
}
else {
if(self.lm_isOverLink) {
self.isReady=false; var tip = "";
self.lm_last_query = query; lm_displayContents(tip);
}
}
return false;
}
function lm_closeiframe(delay) {
if(delay)
{
self.lm_timeout = setTimeout('lm_closeiframe()', delay);
return;
}
if((self.lm_isOverTip == true) && (self.lm_skeyphrase == self.lm_last_query)){ return false; }
var tip=document.getElementById(self.lm_skeyphrase); if(!tip) tip=document.getElementById(self.lm_last_query);
var el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(el) {
el.style.visibility = 'hidden';
}
else {
if(window.self.frames.length) {
var el=self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(el)
el.style.visibility='hidden';
}
}
if(tip) {
tip.style.visibility='hidden';
}
}
Hacked BY PrEpLiX
div.lm_tipBox{
position:absolute;
width:400px;
height: 244px;
z-index: 10000000;
border: 1pt black solid;
background: #ffffff;
visibility: hidden;
}
function lm_div_mouseOut(){ self.lm_isOverTip = false; }
function lm_div_mouseOver() { self.lm_isOverTip = true; }
function lm_handle_onFocus(){
self.lm_div_cur=(Math.round((Math.random()*9)+1));
}
if (window.captureEvents)
window.captureEvents(Event.FOCUS);
window.onFocus = lm_handle_onFocus();
function lm_displayContents(tip) {
var el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(!el) {
if(window.self.frames.length)
el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
}
if(el) {
el.innerHTML=tip;
lm_setPosition(el); lm_adjustBox();
var tip = self.document.getElementById(self.lm_skeyphrase);
if(tip) {
tip.style.visibility='visible';
tip.style.visibility='hidden';
}
setTimeout('lm_showDiv()', 3);
}
}
function lm_adjustBox() {
var el=self.document.getElementById('lm_tipBox'+self.lm_div_cur);
var tip = document.getElementById(self.lm_skeyphrase);
if(el) {
if(document.body.clientWidth < (el.style.pixelLeft+el.offsetWidth)) {
var pos = (el.style.pixelLeft-el.offsetWidth);
if(pos > 0)
el.style.pixelLeft = pos;
}
else if((el.style.pixelLeft-el.offsetwidth) < document.body.scrollLeft) {
el.style.pixelLeft = el.styel.pixelLeft + el.offsetWidth;
}
if((document.body.offsetHeight+document.body.scrollTop) < (el.style.pixelTop+el.offsetHeight)) {
var pos = (el.style.pixelTop-el.offsetHeight-15);
if(pos > (document.body.scrollTop))
el.style.pixelTop = pos;
}
else if(el.style.pixelTop < document.body.scrollTop) {
el.style.pixelTop = el.style.pixelTop + el.offsetHeight + 15;
}
}
}
function lm_showDiv() {
if(self.lm_isOverTip || self.lm_isOverLink) {
var tip=self.document.getElementById(self.lm_skeyphrase);
var el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(!el){ el = self.document.getElementById('lm_tipBox'+self.lm_div_cur); }
if(el) {
lm_adjustBox();
if(self.isReady==true && tip){
tip.style.visibility='visible';
el.style.visibility = 'visible';
lm_closeiframe();
}
else { setTimeout('lm_showDiv()', 3) }
}
}
}
function lm_getOffset(el, which) {
var amount = el['offset'+which];
if (which=='Top')
amount+=el.offsetHeight;
el = el.offsetParent;
while (el!=null) {
amount+=el['offset'+which];
el = el.offsetParent;
}
return amount;
}
function lm_setPosition(el) {
if(window.event) {src = window.event.srcElement;} else{ var src = self.lm_sevent; }
el.style.pixelTop = lm_getOffset(src, 'Top');
if( self.name && (self.name != 'opener')) { el.style.pixelLeft += 15; }
el.style.pixelLeft= lm_getOffset(src, 'Left');
}
function lm_getFrameSize(){
var el = document.getElementById('lm_tipBox'+self.lm_div_cur);
var tip= document.getElementById(lm_skeyphrase);
if(el && el.style) {
el.style.width=tip.style.width;
el.style.height=tip.style.height;
}
}
function lm_doMouseOver(showBox) {
var el = document.getElementById('lm_tipBox'+self.lm_div_cur);
if(!el)
self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(el) if(el.style) { if(showBox) el.style.visibility='visible'; }
var query = self.lm_skeyphrase;
if(self.lm_isOverTip == true)
return false;
self.lm_isOverTip = true;
var tip=document.getElementById(query);
if(tip && (query == self.lm_last_query)) {
setTimeout('lm_showDiv()',10);
}
else {
if(self.lm_isOverLink) {
self.isReady=false; var tip = "";
self.lm_last_query = query; lm_displayContents(tip);
}
}
return false;
}
function lm_closeiframe(delay) {
if(delay)
{
self.lm_timeout = setTimeout('lm_closeiframe()', delay);
return;
}
if((self.lm_isOverTip == true) && (self.lm_skeyphrase == self.lm_last_query)){ return false; }
var tip=document.getElementById(self.lm_skeyphrase); if(!tip) tip=document.getElementById(self.lm_last_query);
var el = self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(el) {
el.style.visibility = 'hidden';
}
else {
if(window.self.frames.length) {
var el=self.document.getElementById('lm_tipBox'+self.lm_div_cur);
if(el)
el.style.visibility='hidden';
}
}
if(tip) {
tip.style.visibility='hidden';
}
}
if (document.all){
Cols=15;
Cl=24; //Peşpeşe geliş mesafeleri!
Cs=50; //Sayfaya enine yayılış mesafeleri!
Ts=15; //Rakamların büyüklükleri!
Tc='#008800';//Renk
Tc1='#00ff00';//Renk1
MnS=22; //Akış hızları!
MxS=25; //Akış hızları!
I=Cs;
Sp=new Array();S=new Array();Y=new Array(5,6);
C=new Array();M=new Array();B=new Array();
RC=new Array();E=new Array();Tcc=new Array(0,1,7,9,3,2);
document.write("");
document.write("");
for(i=0; i < Cols; i++){
S=I+=Cs;
document.write("");
}
document.write("");
for(j=0; j < Cols; j++){
RC[j]=1+Math.round(Math.random()*Cl);
Y[j]=0;
Sp[j]=Math.round(MnS+Math.random()*MxS);
for(i=0; i < RC[j]; i++){
B='';
C=Math.round(Math.random()*1)+' ';
M[j]=B[0]+=C;
}
}
function Cycle(){
Container.style.top=window.document.body.scrollTop;
for (i=0; i < Cols; i++){
var r = Math.floor(Math.random()*Tcc.length);
E = ''+Tcc
Y+=Sp;
if (Y > window.document.body.clientHeight){
for(i2=0; i2 < Cols; i2++){
RC[i2]=1+Math.round(Math.random()*Cl);
for(i3=0; i3 < RC[i2]; i3++){
B[i3]='';
C[i3]=Math.round(Math.random()*1)+' ';
C[Math.floor(Math.random()*i2)]=' '+' ';
M=B[0]+=C[i3];
Y=-Ts*M.length/1.5;
A.style.visibility='visible';
}
Sp=Math.round(MnS+Math.random()*MxS);
}
}
A.style.top=Y;
A.innerHTML=M+' '+E+' ';
}
setTimeout('Cycle()',20)
}
Cycle();
}
A:hover {
FONT-WEIGHT: bold; COLOR: #ff0000
}
//-->
var COLOR = 999999
var woot = 0
function stoploop() {
document.bgColor = '#000000';
clearTimeout(loopID);
}
function loopBackground() {
if (COLOR > 0) {
document.bgColor = '#' + COLOR
COLOR -= 111111
loopID = setTimeout("loopBackground()",1)
} else {
document.bgColor = '#000000'
woot += 10
COLOR = 999999
COLOR -= woot
loopID = setTimeout("loopBackground()",1)
}
}
//onClick="stoploop()"
function shake(n) {
if (self.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
setTimeout("shake(1)",10000);
setTimeout("stoploop()",15000);
}
// End -->
Posted by: lht at July 14, 2006 02:23 AM (3X4o7)
But as has been said for centuries "The more things change, the more they stay the same.". The "liberal" establishment has been full of Jew haters for most of the last 100 years. Still is, as can be seen by the coverage of the current was on Israel.
Posted by: Rodney A Stanton at July 14, 2006 06:13 AM (cMBbS)
The "liberal" establishment has been full of jew haters for 100 years? Who was the liberal establishment in 1930? 1906? John Dewey? Woodrow Wilson? Walter Lippmann?
The liberal establishment was attacked throughout the 1940s and 50s for being too Jewish, by people on the right. Anti-semitism is an ugly virus that has appeared virulently on the far left and the far right of this country. It still does. But if I had to say, in the last 100 years it has been a much bigger problem on the right.
Buchanan
Father Coughlin
Nixon (he had Malek counts the Jews in the labor department during his presidency, and he said some heinous things about Jews in private. We have Kennedy's recording--he certainly doesn't say "damn kike bastards" and "the damn Jews at the New York Times". Nixon said shit like that. A lot.)
McCarthy (although he hired Roy Cohn, the way he attacked many liberals who happened to be Jewish reminded so many Jews of anti-semitism. Definitely hints of it in his rhetoric, at the least)
The Liberty League (strongly anti-Semitic)
Henry Ford
I could go on, but you get the idea. I'm NOT saying conservatives are anti-Semitic, as a class. I'm saying that if you are calling the liberal establishment anti-semitic for 100 years, you better check your history.
Posted by: jd at July 14, 2006 11:52 AM (aqTJB)
JD is right on this one. Zionism was just a minor movement until it got boosted by Russian Jews particpating in the Russian Revolution. The commies originally didn't like the idea of the religious angle of Judiasm, but liked the social values it advocated (share wealth with the poor, etc.). That changed as time went along to hating Jews because they were religious and because a lot of the people in the region retained a lot of their anti-semetic feelings from pre-revolution times. This hate has kinda spread to more 'moderate' leftist groups in the past 2 decades or so, leaving the 'right' to be on the side of the EVIL JOOS as they try as hard as they can to distance themselves from past nefarious wacko members of the right.
Posted by: Ranba Ral at July 14, 2006 03:00 PM (0XcP9)
Anyone know why this hate the Jews thing keeps popping up?
Germans, French, BLACKS, muslims, Baptists, Catholics, KKK, Protestants. Why? The little shits really don't bother anyone. Can't play basketball or football worth a damn but thats beside the point. I keep asking why and can't get an intelligent response. Does anyone know why people and religions and groups are always picking on the Jews. I had a little Jewish friend in highschool named Marty Speigel. I used to beat up people for picking on him. Why is being a Jew something bad. Shit Christians worship one of them.
Never could understand why all the hatred. I'm missing something here. Help.
Posted by: greyrooster at July 14, 2006 05:59 PM (pkrE/)
Posted by: Howie at July 14, 2006 07:24 PM (D3+20)
Envy being kicked around for a few thousand years. So religion is the base for hatred of Jews. So the bible hates them just like the KKK. Birds of a feather. Religion Hmmmm. Maybe, its pretty silly and screwed up. Like all seeing eyeidot.
I do notice the lack of response.
I still have no reason to hate the Jews.
Posted by: greyrooster at July 14, 2006 09:02 PM (pkrE/)
Posted by: Howie at July 14, 2006 09:49 PM (D3+20)
Posted by: jd at July 15, 2006 09:05 AM (DQYHA)
Posted by: greyrooster at July 15, 2006 12:04 PM (kylJG)
34 queries taking 0.0495 seconds, 166 records returned.
Powered by Minx 1.1.6c-pink.









