Welcome to Jetset Japan, the number one website for JET Programme participants! Our blend of exclusive deals and discounts, living information and competitions ensure we are the number one online JET resource.
The DealZone hosts a range of exclusive JET deals and discounts, including credit cards, computers, automobiles and more. Our InfoZone offers essential Japan living guides.
This month we bring you news of the Toyota Invitational Programme, your chance to learn more first hand about one of the world's leading corporations. We also have opened up a topical poll on whale hunting so state your opinions please.
Jetset is your website, if you have any feedback on the site or any ideas on how you would like it to develop, please do not hesitate to contact the Jetset Japan Team.
Jet Star Airfares to Australia
Jet Star are offering unprecedented airfares to Australia through STA Travel. It has never been so cheap to fly with their introductory specials. Find out more!
FlightFinderJapan.com
Looking for discount airfares? This excellent website puts you in touch with Japan's leading discount travel agents. Find the best fares with ease!
Slash Your Phone Bill!
world:link J-Call offers heavily discounted direct dail domestic & international telecom services at 24 hour flat rates. Free 24 hour registration!
Sound Portfolio Investments
Considering your investment options? We have teamed up with ExPat funds to bring you an exclusive deal on Zurich International investment products. Find out more!
#!/usr/bin/perl
##############################################################################
# SSI Random Image Displayer Version 1.2 #
# Copyright 1996 Matt Wright mattw@scriptarchive.com #
# Created 7/1/95 Last Modified 11/4/95 #
# Scripts Archive at: http://www.scriptarchive.com/ #
##############################################################################
# COPYRIGHT NOTICE #
# Copyright 1996 Matthew M. Wright All Rights Reserved. #
# #
# SSI Random Image may be used and modified free of charge by anyone so #
# long as this copyright notice and the comments above remain intact. By #
# using this this code you agree to indemnify Matthew M. Wright from any #
# liability that might arise from it's use. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. In other words, please ask first before you try and #
# make money off of my program. #
# #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact.#
##############################################################################
# Define Variables
$basedir = "http://www.jetsetjapan.com/bank-image/dealzone/adboxes/";
@images = ("dealzone-box-etg.jpg","dealzone-box-citicard-s.jpg","dealzone-box-reef.jpg","dealzone-box-oacjapan.jpg");
@urls = ("http://www.jetsetjapan.com/dealzone-esl-images.shtml",
"http://www.jetsetjapan.com/dealzone-citicard.shtml",
"http://www.jetsetjapan.com/dealzone-reefencounters.shtml",
"http://www.jetsetjapan.com/dealzone-oac-japan.shtml");
@alt = ("Teaching","Credit Cards","Diving","Okinawa Adventure");
##############################################################################
# Options
$uselog = "0"; # 1 = YES; 0 = NO
$logfile = "/path/to/log/file";
$date = `/usr/bin/date`; chop($date);
$link_image = "1"; # 1 = YES; 0 = NO
$align = "middle";
$border = "0";
# Done
##############################################################################
srand(time ^ $$);
$num = rand(@images); # Pick a Random Number
# Print Out Header With Random Filename and Base Directory
print "Content-type: text/html\n\n";
if ($link_image eq '1' && $urls[$num] ne "") {
print "";
}
print "";
if ($link_image eq '1' && $urls[$num] ne "") {
print "";
}
print "\n";
# If You want a log, we add to it here.
if ($uselog eq '1') {
open(LOG, ">>$logfile");
print LOG "$images[$num] - $date - $ENV{'REMOTE_HOST'}\n";
close(LOG);
}
#!/usr/bin/perl
##############################################################################
# SSI Random Image Displayer Version 1.2 #
# Copyright 1996 Matt Wright mattw@scriptarchive.com #
# Created 7/1/95 Last Modified 11/4/95 #
# Scripts Archive at: http://www.scriptarchive.com/ #
##############################################################################
# COPYRIGHT NOTICE #
# Copyright 1996 Matthew M. Wright All Rights Reserved. #
# #
# SSI Random Image may be used and modified free of charge by anyone so #
# long as this copyright notice and the comments above remain intact. By #
# using this this code you agree to indemnify Matthew M. Wright from any #
# liability that might arise from it's use. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. In other words, please ask first before you try and #
# make money off of my program. #
# #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact.#
##############################################################################
# Define Variables
$basedir = "http://www.jetsetjapan.com/bank-image/dealzone/adboxes/";
@images = ("dealzone-box-cars.jpg","dealzone-box-lloydstsb.jpg","dealzone-box-macways.jpg","dealzone-box-smiths.jpg","dealzone-box-alcotrade.jpg");
@urls = ("http://www.jetsetjapan.com/dealzone-rexis.shtml",
"http://www.jetsetjapan.com/dealzone-lloydstsb.shtml",
"http://www.jetsetjapan.com/dealzone-macways.shtml",
"http://www.jetsetjapan.com/dealzone-smiths.shtml",
"http://www.jetsetjapan.com/dealzone-alcotrade.shtml");
@alt = ("Cars","Remittances","Tailoring","School Franchise","Fine Wines");
##############################################################################
# Options
$uselog = "0"; # 1 = YES; 0 = NO
$logfile = "/path/to/log/file";
$date = `/usr/bin/date`; chop($date);
$link_image = "1"; # 1 = YES; 0 = NO
$align = "middle";
$border = "0";
# Done
##############################################################################
srand(time ^ $$);
$num = rand(@images); # Pick a Random Number
# Print Out Header With Random Filename and Base Directory
print "Content-type: text/html\n\n";
if ($link_image eq '1' && $urls[$num] ne "") {
print "";
}
print "";
if ($link_image eq '1' && $urls[$num] ne "") {
print "";
}
print "\n";
# If You want a log, we add to it here.
if ($uselog eq '1') {
open(LOG, ">>$logfile");
print LOG "$images[$num] - $date - $ENV{'REMOTE_HOST'}\n";
close(LOG);
}
#!/usr/bin/perl
##############################################################################
# SSI Random Image Displayer Version 1.2 #
# Copyright 1996 Matt Wright mattw@scriptarchive.com #
# Created 7/1/95 Last Modified 11/4/95 #
# Scripts Archive at: http://www.scriptarchive.com/ #
##############################################################################
# COPYRIGHT NOTICE #
# Copyright 1996 Matthew M. Wright All Rights Reserved. #
# #
# SSI Random Image may be used and modified free of charge by anyone so #
# long as this copyright notice and the comments above remain intact. By #
# using this this code you agree to indemnify Matthew M. Wright from any #
# liability that might arise from it's use. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. In other words, please ask first before you try and #
# make money off of my program. #
# #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact.#
##############################################################################
# Define Variables
$basedir = "http://www.jetsetjapan.com/bank-image/dealzone/adboxes/";
@images = ("dealzone-box-time.jpg","dealzone-box-telephony.jpg","dealzone-box-yomiuri.jpg","dealzone-box-jens.jpg");
@urls = ("http://www.jetsetjapan.com/dealzone-time.shtml",
"http://www.jetsetjapan.com/dealzone-worldlink-p.shtml",
"http://www.jetsetjapan.com/dealzone-yomiuri.shtml",
"http://www.jetsetjapan.com/dealzone-jens-spinnet.shtml");
@alt = ("TIME","Telecom","Yomiuri","Trans Siberian Adventure");
##############################################################################
# Options
$uselog = "0"; # 1 = YES; 0 = NO
$logfile = "/path/to/log/file";
$date = `/usr/bin/date`; chop($date);
$link_image = "1"; # 1 = YES; 0 = NO
$align = "middle";
$border = "0";
# Done
##############################################################################
srand(time ^ $$);
$num = rand(@images); # Pick a Random Number
# Print Out Header With Random Filename and Base Directory
print "Content-type: text/html\n\n";
if ($link_image eq '1' && $urls[$num] ne "") {
print "";
}
print "";
if ($link_image eq '1' && $urls[$num] ne "") {
print "";
}
print "\n";
# If You want a log, we add to it here.
if ($uselog eq '1') {
open(LOG, ">>$logfile");
print LOG "$images[$num] - $date - $ENV{'REMOTE_HOST'}\n";
close(LOG);
}
Looking to get set up at home instead of stealing time at work on the internet. Our A to Z guide on finding a computer and getting online is all you need. (go)
You have probably found out that making calls in Japan is an expensive past time. We show you how to save money on domestic and international calls. (go)
Do you want a scooter? Are you riding your scooter legally? Things get a little complex when it comes to the validity of your licence. We explain it all here. (go)
Our guide to medical services in Japan will put your mind at ease. We show you how the process works and how to find English language services in your area. (go)
Top Stories
Japan News
Entertainment News
Oxfam Japan is looking for volunteers in Japan. Oxfam believes that in a world rich in resources, poverty isn't a fact of life but an injustice which must be overcome. We believe that everyone is entitled to a life of dignity and opportunity. Visit the Jetset Japan 'Volunteer JET' section now to find out how you can help.