﻿// JScript 文件

function getUrl(s)
{
var m = new Image();
m.src=s;
return m.src;
}


function insertubb()
{
  var  iWidth=330; //模态窗口宽度
  var  iHeight=240;//模态窗口高度 
  var  iTop=(window.screen.height-iHeight)/2;
  var  iLeft=(window.screen.width-iWidth)/2;

  window.open("../edit/face.htm","用户登录",
 "Scrollbars=no,Toolbar=no,Location=no,Direction=no,Resizeable=no,   Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft) ;
 
}

function insertStr(sAction) 
{
var FacePath = "../edit/face/";
var editor = opener.document.getElementById("editor");

editor.focus();
editor.document.execCommand("InsertImage", false, FacePath + sAction +".gif");
editor.focus();
window.close();
}
function insertStr1(sAction) 
{
var FacePath = "../edit/face1/";
var editor = opener.document.getElementById("editor");

editor.focus();
editor.document.execCommand("InsertImage", false, FacePath + sAction +".gif");
editor.focus();
window.close();
}
