|
|
| About site: Issues/Environment/Nuclear/Organizations - Nuclear-Free Future Award |
Return to Society also Society |
| About site: http://www.nuclear-free.com/ |
Title: Issues/Environment/Nuclear/Organizations - Nuclear-Free Future Award Based in Munich, the Nuclear-Free Future Award gives out three money prizes annually to aid those people or organizations working to make the world's future nuclear-free. |
| Alexa statistic for http://www.nuclear-free.com/ |
Please visit: http://www.nuclear-free.com/
|
| Related sites for http://www.nuclear-free.com/ |
| Man_Center Ecumenical and humanitarian non-profit organization in Italy. Multilingual site. | | Ong,_Edmund_-_Edmund_At_Home A photo gallery of his family, graduation from college, and days in the Army. Also includes a guest book and short biography. | | Peopling_North_America__Population_Movements_and_Migration Presents a historical overview of migration to and within Canada, the United States, Mexico and the Caribbean from Europe, Asia and Africa. The demographic, economic, cultural, and political nature of | | Demaeght,_Christian_Paris Includes personal information, pictures, and links. | | Open_Letter_from_Wayne_Roberts Letter to the board of the Sydney Gay and Lesbian Mardi Gras Festival about including bisexuals. | | Heim_Group Management consulting firm specializing in gender diversity training, gender communication, workforce diversity, research on women and gender and related issues. | | Pakistan With a list of staff of the Permanent Mission of Pakistan to the United Nations in New York, and selected official statements. | | Greystone_Street A personal blog dedicated to conservative ideas, humor, and a Christian worldview. | | National_Consortium_for_Graduate_Degrees_for_Minorities_in_Engineering_and_Sciences GEM is a network of universities, companies, government agencies, alumni and faculty working to together to provide graduate education in engineering and science to underrepresented minority students. | | Union_for_the_Public_Domain_(UPD) A non-profit citizens group with a mission to protect and enhance the public domain in matters concerning intellectual property. A membership organization acting as an independent voice on intellect | | Dr__Harald_Rittler Services for property transactions, insurance law, injury, and criminal defense. Innsbruck, Austria. | | JURIST_-_Law_Schools Comprehensive directory of accredited United States law schools with links to faculty, publications, libraries, admissions, curriculum guides and news. | | The_Grizzwells Strip about a family of four bears, by editorial cartoonist Bill Schorr. | | IACP\'s_National_Chiefs_Challenge Official site includes directions, application, winners, prizes, and news updates. | | 123_Christian_Forums Christian forums with discussions on business, music, movies, web design, and general topics for Christians. | | Arthurian_Byways Michael Wild's collection of Arthuriana. | | Arnold_Distler\'s_Story Video interview with a Polish Jew who survived by escaping from a German Labour Camp and hiding in an underground bunker he and his friends constructed in the forest. | | CVR_Transcript_for_the_Crash_of_Air_Florida_Flight_90 Provided by AVweb. | | Edwin Profile of King St. Edwin. | | FOLDOC___Xenocrates Entry from the philosophical database, with links to related entries. |
|
This is websites2007.org cache of m/ as retrieved on 2008.10.06 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
|
Nuclear-Free Future Award
function slide(src,link,text,target,attr) {
this.src = src;
this.link = link;
this.text = text;
this.target = target;
this.attr = attr;
if (document.images) {
this.image = new Image();
}
this.loaded = false;
this.load = function() {
if (!document.images) { return; }
if (!this.loaded) {
this.image.src = this.src;
this.loaded = true;
}
}
this.hotlink = function() {
var mywindow;
if (!this.link) return;
if (this.target) {
if (this.attr) {
mywindow = window.open(this.link, this.target, this.attr);
} else {
mywindow = window.open(this.link, this.target);
}
if (mywindow && mywindow.focus) mywindow.focus();
} else {
location.href = this.link;
}
}
}
function slideshow( slideshowname ) {
this.name = slideshowname;
this.repeat = true;
this.prefetch = -1;
this.image;
this.timeout = 3000;
this.slides = new Array();
this.current = 0;
this.timeoutid = 0;
this.add_slide = function(slide) {
var i = this.slides.length;
if (this.prefetch == -1) {
slide.load();
}
this.slides[i] = slide;
}
this.play = function(timeout) {
this.pause();
if (timeout) {
this.timeout = timeout;
}
if (typeof this.slides[ this.current ].timeout != 'undefined') {
timeout = this.slides[ this.current ].timeout;
} else {
timeout = this.timeout;
}
this.timeoutid = setTimeout( this.name + ".loop()", timeout);
}
this.pause = function() {
if (this.timeoutid != 0) {
clearTimeout(this.timeoutid);
this.timeoutid = 0;
}
}
this.update = function() {
if (! this.valid_image()) { return; }
if (typeof this.pre_update_hook == 'function') {
this.pre_update_hook();
}
var slide = this.slides[ this.current ];
var dofilter = false;
if (this.image &&
typeof this.image.filters != 'undefined' &&
typeof this.image.filters[0] != 'undefined') {
dofilter = true;
}
slide.load();
if (dofilter) {
if (slide.filter &&
this.image.style &&
this.image.style.filter) {
this.image.style.filter = slide.filter;
}
this.image.filters[0].Apply();
}
this.image.src = slide.image.src;
if (dofilter) {
this.image.filters[0].Play();
}
if (typeof this.post_update_hook == 'function') {
this.post_update_hook();
}
if (this.prefetch > 0) {
var next, prev, count;
next = this.current;
prev = this.current;
count = 0;
do {
if (++next >= this.slides.length) next = 0;
if (--prev < 0) prev = this.slides.length - 1;
this.slides[next].load();
this.slides[prev].load();
} while (++count < this.prefetch);
}
}
this.next = function() {
if (this.current < this.slides.length - 1) {
this.current++;
} else if (this.repeat) {
this.current = 0;
}
this.update();
}
this.previous = function() {
if (this.current > 0) {
this.current--;
} else if (this.repeat) {
this.current = this.slides.length - 1;
}
this.update();
}
this.hotlink = function() {
this.slides[ this.current ].hotlink();
}
this.save_position = function(cookiename) {
if (!cookiename) {
cookiename = this.name + '_slideshow';
}
document.cookie = cookiename + '=' + this.current;
}
this.restore_position = function(cookiename) {
if (!cookiename) {
cookiename = this.name + '_slideshow';
}
var search = cookiename + "=";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search);
if (offset != -1) {
offset += search.length;
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
this.current = parseInt(unescape(document.cookie.substring(offset, end)));
}
}
}
this.loop = function() {
if (this.current < this.slides.length - 1) {
next_slide = this.slides[this.current + 1];
if (next_slide.image.complete == null || next_slide.image.complete) {
this.next();
}
} else {
this.next();
}
this.play( );
}
this.valid_image = function() {
if (!this.image)
{
return false;
}
else {
return true;
}
}
this.getElementById = function(element_id) {
if (document.getElementById) {
return document.getElementById(element_id);
}
else if (document.all) {
return document.all[element_id];
}
else if (document.layers) {
return document.layers[element_id];
} else {
return undefined;
}
}
this.set_image = function(imageobject) {
if (!document.images)
return;
this.image = imageobject;
}
}
SLIDES = new slideshow("SLIDES");
SLIDES.timeout = 3000;
SLIDES.prefetch = 2;
SLIDES.repeat = true;
s = new slide();
s.src = "cover/mayorscopy2.gif";
s.link = "/recipients.htm#mayor";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/azzawicopy2.gif";
s.link = "recipients/recipients.htm#azzawi";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/barefootcopy2.gif";
s.link = "recipients/recipients.htm#barefoot";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/breinercopy2.gif";
s.link = "recipients/recipients.htm#breiner";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/bulletinclockcopy2.gif";
s.link = "recipients/recipients.htm#bulletin";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/buzzacottcopy2.gif";
s.link = "recipients/recipients.htm#buzzacott";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/clarkcopy2.gif";
s.link = "recipients/recipients.htm#clark";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/navajocopy2.gif";
s.link = "recipients/recipients.htm#shirley";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/durakoviccopy2.gif";
s.link = "recipients/recipients.htm#durakovic";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/edwardscopy2.gif";
s.link = "recipients/recipients.htm#edwards";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/fellcopy2.gif";
s.link = "recipients/recipients.htm#fell";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/solangecopy2.gif";
s.link = "recipients/recipients.htm#fernex";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/grothuscopy2.gif";
s.link = "recipients/recipients.htm#grothus";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/guenthercopy2.gif";
s.link = "recipients/recipients.htm#guenther";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/hallacopy2.gif";
s.link = "recipients/recipients.htm#halla";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/corbincopy2.gif";
s.link = "recipients/recipients.htm#corbin";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/harrisoncopy2.gif";
s.link = "recipients/recipients.htm#harrison";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/kenjicopy2.gif";
s.link = "recipients/recipients.htm#higuchi";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/chevrotiercopy2.gif";
s.link = "recipients/recipients.htm#chevrotier";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/joarcopy2.gif";
s.link = "recipients/recipients.htm#JOAR";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/olecopy2.gif";
s.link = "recipients/recipients.htm#ole";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/kuidincopy2.gif";
s.link = "recipients/recipients.htm#kuidin";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/linicopy2.gif";
s.link = "recipients/recipients.htm#lini";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/lowrycopy2.gif";
s.link = "recipients/recipients.htm#lowry";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/franciscopy2.gif";
s.link = "recipients/recipients.htm#macy";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/maegaardcopy2.gif";
s.link = "recipients/recipients.htm#maegaard";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/yvonnecopy2.gif";
s.link = "recipients/recipients.htm#yvonne";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/meissnerblaucopy2.gif";
s.link = "recipients/recipients.htm#freda";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/raulcopy2.gif";
s.link = "recipients/recipients.htm#raul";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/popovacopy2.gif";
s.link = "recipients/recipients.htm#popova";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/purleycopy2.gif";
s.link = "recipients/recipients.htm#purley";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/nunscopy2.gif";
s.link = "recipients/recipients.htm#nuns";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/schefflercopy2.gif";
s.link = "recipients/recipients.htm#scheffler";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/schellcopy2.gif";
s.link = "recipients/recipients.htm#schell";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/schmitzcopy2.gif";
s.link = "recipients/recipients.htm#schmitz";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/sharancopy2.gif";
s.link = "recipients/recipients.htm#sharan";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/maisiecopy2.gif";
s.link = "recipients/recipients.htm#maisie";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/sriccopy2.gif";
s.link = "recipients/recipients.htm#sric";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/thorpecopy2.gif";
s.link = "recipients/recipients.htm#thorpe";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/traubecopy2.gif";
s.link = "recipients/recipients.htm#traube";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/udallcopy2.gif";
s.link = "recipients/recipients.htm#udall";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/vanunucopy2.gif";
s.link = "recipients/recipients.htm#vanunu";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/weisscopy2.gif";
s.link = "recipients/recipients.htm#weiss";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/defenderscopy2.gif";
s.link = "recipients/recipients.htm#defenders";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/yablakovcopy2.gif";
s.link = "recipients/recipients.htm#yablokov";
s.target = "_parent";
SLIDES.add_slide(s);
s = new slide();
s.src = "cover/xiaodicopy2.gif";
s.link = "recipients/recipients.htm#xiaodi";
s.target = "_parent";
SLIDES.add_slide(s);
if (false) SLIDES.shuffle();
function snakeWindow() {
window.open("english/snake.htm","snakeWindow","scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=470,height=440");
}
© Copyright 1997-2008 . Nuclear-Free Future Award . Ganghoferstr. 52 . München D-80339
Tel.: +49 (0)89 28 65 97 14 . Fax: +49 (0)89 28 65 97 15
webDesign Craig Reishus
Last modified 4 August 2008
|
|
| |
Based | in | Munich, | the | Nuclear-Free | Future | Award | gives | out | three | money | prizes | annually | to | aid | those | people | or | organizations | working | to | make | the | world's | future | nuclear-free. |
|
http://www.nuclear-free.com/
Nuclear-Free Future Award 2008 October
dvd rental
dvd
Based in Munich, the Nuclear-Free Future Award gives out three money prizes annually to aid those people or organizations working to make the world's future nuclear-free.
Rules
|
© 2008 Internet Explorer 5+ or Netscape 6+
|
|
Recommended Sites: 1.
Arts -
Business -
Computers -
Games -
Health -
Home -
Kids and Teens -
News -
Recreation -
Reference -
Regional -
Science -
Shopping -
Society -
Sports -
World
Miss Gallery
- Top Anime Hentai
- DVD rental by mail
- Kitchen Appliance - MPAA - Consumer information - Remortgages - Car Loan
|