﻿/*******************************************************************************************/
/*  작 성 자 : (주)익스코어
/*  작 성 일 :  2007.03.30
/*  수 정 일 :  2007.04.08
/*  버     전 :  0.0.1
/*  설     명 :  VR파노라마 팝업
/*  위     치 :  /js/vrPlayer.js
/*******************************************************************************************/

function showVR(url)
{
	var sizeWidth = 761;
	var sizeHeight = 407;
	var popupTop = (screen.height - sizeHeight) / 2;
	var popupLeft = (screen.width - sizeWidth) / 2;
	var status = "status=yes, menubar=no, scrollbars=no, resizable=no, director=no, left=" + popupLeft + ", top=" + popupTop + ", width=" + sizeWidth + ", height=" + sizeHeight;

	window.open(url,'VR', status);

	return false;
}
