function popBank(id){
	document.location.href="http://www.lasering.ee/caller.php?bank_id="+id;
//	window.open("http://www.lasering.ee/caller.php?bank_id="+id,"popIm","top=10,left=20,resizable=yes,width=640,height=500,status=yes,location=yes,menubar=yes,scrollbars=yes")
}


function popWin(url,he,wi){
	if(he<=0)he = '500';
	if(wi<=0)wi = '600';
	
	var kyssa=window.open(url,'','scrollbars=yes,width='+wi+',height='+he+',resizable=yes,status=yes,menubar=yes,location=yes,top=10,left=10');	
}

function getTop(item){
	var myTarget = item;  
	var top=0;
	while(myTarget!= document.body) {
		top += myTarget.offsetTop;     
		myTarget = myTarget.offsetParent;   
	} 
	return top;
}

function getLeft(item){
	var myTarget = item;  
	var left=0;
	while(myTarget!= document.body) {
		left += myTarget.offsetLeft;     
		myTarget = myTarget.offsetParent;   
	} 
	return left;
}

