function Show_Popup() {
$('#popup_tausta').fadeIn('slow');
$('#popup').fadeIn('slow');
}
function Close_Popup() {
$('#popup_tausta').fadeOut('fast');
$('#popup').fadeOut('fast');
history.go(-1);
}
function Close_Popup2() {
$('#popup_tausta').fadeOut('fast');
$('#popup').fadeOut('fast');
history.go(-2);
}
function Close_Popup_return(asivu) {
$('#popup_tausta').fadeOut('fast');
$('#popup').fadeOut('fast');
var url=asivu;
window.location.href=url;
}
function mene(asivu) {
window.location.href=asivu;
}


var newwindow;
function poppaa(url) {
  
  var leveys = 425;
  var korkeus = 800;
  var vasen = screen.width - screen.width/2 - leveys/2;
  var yla = screen.height - screen.height/2 - korkeus/2;

  newwindow=window.open(url,'nimi','height='+korkeus+',width='+leveys+',left='+vasen+',top='+yla+',resizable=no,scrollbars=yes');
  if (window.focus) {newwindow.focus()}
}

