var i=1;
stage.new_player_model = function (left, top){
var onew=document.createElement("img");
onew.src="sprites/full_plt/looking e0.gif"
onew.id='b'+i
onew.width=64
onew.what="player"
onew.left=left
onew.top=top
onew.actor='full_plt'
onew.pscen='running_e'
onew.animations = new Array("running_e")
onew.wvector='w'
onew.nvector='n'
onew.evector='e'
onew.svector='s'
onew.vector='e'
onew.routx='5'
onew.routy='0'
onew.rmv='0'
onew.style.width=onew.width+'px'
onew.style.position="absolute"
onew.style.left=onew.left+'px'
onew.style.top=onew.top+'px'
onew.timeturn=ttimeline.length
ttimeline.push(onew.id)
i++
document.getElementById("oworld").appendChild(onew)
}