/////  JUMP WEBSITE

function jump(){
 alert('外部のサイトへジャンプします。\n「小池里奈オフィシャルブログ Powered by Ameba」');


 opwin = window.open("","opwin",'');
 opwin.location = "http://ameblo.jp/koikerina/";
 opwin.focus();  
}

function jump2(){
 alert('外部のサイトへジャンプします。\n「テレビ東京ショッピング　てれとマート」');


 opwin = window.open("","opwin",'');
 opwin.location = "http://tv-tokyoshop.jp/search/results.php?pc=3&pn=143&hd=1&ds=0&afi=33924473";
 opwin.focus();  
}


///// POP UP

function popup(loc) {
var wnd="popup";
var width='480';
var height='490';
var myWindow = window.open(loc, wnd, 'resizable=no, menubar=0, directories=0, scrollbars=0, status=0, left=50, top=50, width='+width+',height='+height);
if (myWindow.focus!=null) {
myWindow.focus();
}
}

