/*
function start_TopAnimation() {
	if(runanim != 1) { clear_TopAnimation(); return; }
	document.getElementById('tm_picture_a').className = "img_on";
	defaultTween = new Tween(document.getElementById('group_textimg1').style,'left',Tween.regularEaseInOut,405,625,1,'px');defaultTween.start();
	opacityTween = new OpacityTween(document.getElementById('group_textimg1'),Tween.regularEaseInOut, 0, 80, 1);opacityTween.start();
	opacityTween.onMotionFinished = function() { 
		opacityTween = new OpacityTween(document.getElementById('group_textimg1'),Tween.regularEaseInOut, 80, 0, 3);opacityTween.start(); 
		opacityTween.onMotionFinished = function() {
			if(runanim != 1) { clear_TopAnimation(); return; }
			document.getElementById('tm_picture_a').className = "img_out";
			document.getElementById('tm_picture_b').className = "img_on";
			defaultTween = new Tween(document.getElementById('group_textimg2').style,'left',Tween.regularEaseInOut,405,625,1,'px');defaultTween.start();
			opacityTween = new OpacityTween(document.getElementById('group_textimg2'),Tween.regularEaseInOut, 0, 80, 1);opacityTween.start();
			opacityTween.onMotionFinished = function() { 
				opacityTween = new OpacityTween(document.getElementById('group_textimg2'),Tween.regularEaseInOut, 80, 0, 3);opacityTween.start();
				opacityTween.onMotionFinished = function() { 
					if(runanim != 1) { clear_TopAnimation(); return; }
					document.getElementById('tm_picture_b').className = "img_out";
					document.getElementById('tm_picture_c').className = "img_on";
					defaultTween = new Tween(document.getElementById('group_textimg3').style,'left',Tween.regularEaseInOut,405,625,1,'px');defaultTween.start();
					opacityTween = new OpacityTween(document.getElementById('group_textimg3'),Tween.regularEaseInOut, 0, 80, 1);opacityTween.start();
					opacityTween.onMotionFinished = function() {
						opacityTween = new OpacityTween(document.getElementById('group_textimg3'),Tween.regularEaseInOut, 80, 0, 3);opacityTween.start(); 
						opacityTween.onMotionFinished = function() {
							document.getElementById('tm_picture_c').className = "img_out";
							if(runanim == 1) { start_TopAnimation(); }else{	clear_TopAnimation(); }
						}
					}
				}
			}
		}
	}
}*/

function start_TopAnimation() {
	if(runanim != 1) { clear_TopAnimation(); return; }
	document.getElementById('tm_picture_a').className = "img_on";
	defaultTween = new Tween(document.getElementById('group_textimg1').style,'left',Tween.regularEaseInOut,367,587,1,'px');defaultTween.start();
	opacityTween = new OpacityTween(document.getElementById('group_textimg1'),Tween.regularEaseInOut, 0, 80, 1);opacityTween.start();
	opacityTween.onMotionFinished = function() { 
		opacityTween = new OpacityTween(document.getElementById('group_textimg1'),Tween.regularEaseInOut, 80, 0, 3);opacityTween.start(); 
		opacityTween.onMotionFinished = function() {
			if(runanim != 1) { clear_TopAnimation(); return; }
			document.getElementById('tm_picture_a').className = "img_out";
			document.getElementById('tm_picture_b').className = "img_on";
			defaultTween = new Tween(document.getElementById('group_textimg2').style,'left',Tween.regularEaseInOut,367,587,1,'px');defaultTween.start();
			opacityTween = new OpacityTween(document.getElementById('group_textimg2'),Tween.regularEaseInOut, 0, 80, 1);opacityTween.start();
			opacityTween.onMotionFinished = function() { 
				opacityTween = new OpacityTween(document.getElementById('group_textimg2'),Tween.regularEaseInOut, 80, 0, 3);opacityTween.start();
				opacityTween.onMotionFinished = function() { 
					if(runanim != 1) { clear_TopAnimation(); return; }
					document.getElementById('tm_picture_b').className = "img_out";
					document.getElementById('tm_picture_c').className = "img_on";
					defaultTween = new Tween(document.getElementById('group_textimg3').style,'left',Tween.regularEaseInOut,367,587,1,'px');defaultTween.start();
					opacityTween = new OpacityTween(document.getElementById('group_textimg3'),Tween.regularEaseInOut, 0, 80, 1);opacityTween.start();
					opacityTween.onMotionFinished = function() {
						opacityTween = new OpacityTween(document.getElementById('group_textimg3'),Tween.regularEaseInOut, 80, 0, 3);opacityTween.start(); 
						opacityTween.onMotionFinished = function() {
							document.getElementById('tm_picture_c').className = "img_out";
							if(runanim == 1) { start_TopAnimation(); }else{	clear_TopAnimation(); }
						}
					}
				}
			}
		}
	}
}

function clear_TopAnimation() {
	document.getElementById('tm_picture_a').className = "img_on";
	document.getElementById('tm_picture_b').className = "img_on";
	document.getElementById('tm_picture_c').className = "img_on";
}

function openPopup(p_width, p_height, p_name, p_url, p_scroll, p_resize) {
	var pos_y = (screen.width - p_width) / 2;
	var pos_x = (screen.height - p_height) / 2;
	win_popup = 'width='+p_width+',height='+p_height+',left='+pos_y+',top='+pos_x+',menubar=0,location=0,toolbar=0,personalbar=0,status=0,scrollbars='+p_scroll+',titlebar=0,resizable='+p_resize+''
	win = window.open(p_url, p_name, win_popup)
}

function resize_Elements() {
	var client_h = document.body.clientHeight;
	var client_w = document.body.clientWidth;
	if(document.getElementById("tr_bg_grey")) {
		document.getElementById("tr_bg_grey").style.width = client_w - 838;
	}
	if(document.getElementById("main_frame")) {
		document.getElementById("main_frame").style.height =  client_h - 203;
	}
	if(document.getElementById("left_frame")) {
		document.getElementById("left_frame").style.height =  client_h - 259;
	}
}

function menu_MouseOver(elem_id) {
	opacityTween = new OpacityTween(document.getElementById(elem_id),Tween.regularEaseInOut, 0, 80, 1);
	opacityTween.start()
}

function menu_MouseOut(elem_id) {
	opacityTween = new OpacityTween(document.getElementById(elem_id),Tween.regularEaseInOut, 80, 0, 1);
	opacityTween.start()
}

function start_Bestek(bestek_url) {
	openPopup(800, 600, "pop_bestek", bestek_url, 1, 1);
}
