﻿// JScript File
function getNextStep(obj)
{
        document.location="?typ="+obj.value;
}
function findPos(obj) 
{
	var curleft = curtop = 0;
	if (obj.offsetParent) 
	{
        do 
        {
			curleft += obj.offsetLeft;
			curtop += obj.offsetTop;
        }
         while (obj = obj.offsetParent);
    }
    return [curleft,curtop];
}

function ShowPopup (_title, _text)
{
    var tmpRes = null;
    var
    tmpRes = window.open("mypopup.aspx?text_id="+_text+"&title="+_title,_title,"height=300,width=300,left=40,top=40");
    return tmpRes;
    
}
