function OpenPreview( pImagePath )
{
	var aOption = new Object();
	aOption.width = 640;	//ウィンドウ横サイズ
	aOption.height = 512;	//ウィンドウ縦サイズ
	aOption.type = 'window';	//ウィンドウのタイプ、'window', 'alert', 'confirm'のいずれか
	aOption.func = null;	//'confirm'の場合、Yesのときに呼び出される関数名
	aOption.draggable = true;	//ドラッグできるようにするかどうか
	aOption.resizable = false;	//リサイズできるようにするかどうか
	aOption.overlay = true;	//オーバーレイを使用するかどうか
	aOption.opacity = 1;	//透明度（0〜1の小数点OK）
	aOption.left = false;	//左端からの距離、falseで真ん中
	aOption.top = false;	//上端からの距離、falseで真ん中
	
	var aUrl = "preview.php?path=" + pImagePath;
	new LITBox( aUrl, aOption );
}
