function RakuenPopUp(url)
{
  var strUA = "";
  var scrollbarW=17;
  strUA = navigator.userAgent.toLowerCase();

  if(strUA.indexOf("safari") != -1){
    scrollbarW=15;

  }else if(strUA.indexOf("firefox") != -1){
    scrollbarW=17;

  }else if(strUA.indexOf("opera") != -1){
    scrollbarW=18;

  }else if(strUA.indexOf("netscape") != -1){
    scrollbarW=15;

  }else if(strUA.indexOf("msie") != -1){
    scrollbarW=17;

  }else if(strUA.indexOf("mozilla/4") != -1){
   	scrollbarW=15;
  }
	window.open(url,'RakuenPopUpWindow', 'width='+(850+scrollbarW)+', height=700, menubar=no, toolbar=no, scrollbars=yes');
}

function MapPopUp(url)
{
	window.open(url,'RakuenMapUpWindow', 'width='+(850)+', height=700, menubar=no, toolbar=no, scrollbars=yes');
}

function SafariResize() {
	var strUA = "";
	var scrollbarW=17;
	strUA = navigator.userAgent.toLowerCase();

	if(strUA.indexOf("safari") != -1){
		scrollbarW=15;
		window.resizeTo(850+scrollbarW,700);
	}
}