function $import( path )
{
   var s = document.createElement("script");
   s.type = "text/javascript";
   s.src =  path;
   var head = document.getElementsByTagName("head")[0];
   head.appendChild(s);
}

function $(name)
{
	return document.getElementById(name);
}

function popObjectSelectInfo(url){
window.open(url,'newWin','modal=yes,width=550,height=230,resizable=no,scrollbars=no');
}

