//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(popup_name){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("400");
		$("#"+popup_name).fadeIn("400");
		popupStatus = 1;
		saved_popup_name = popup_name;
	}
}

//disabling popup with jQuery magic!
function disablePopup(popup_name){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("400");
		$("#"+popup_name).fadeOut("400");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(popup_name){
	//request data for centering
	var windowWidth = document.body.clientWidth;
	var windowHeight = document.body.clientHeight;
	var popupHeight = $("#"+popup_name).height();
	var popupWidth = $("#"+popup_name).width();
	//centering
	$("#"+popup_name).css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
	//only need force for IE6
	$("#backgroundPopup").css({
		"height": windowHeight
	});
	$("#backgroundPopup").css({
		"width": windowWidth
	});
}

function set_swf_src(swf_src) {
	document.getElementById('embed_target').src = swf_src;
	document.getElementById('param_embed_target').name = swf_src;
//	alert(swf_src);
}