// JavaScript Document
var currentLink;

function hideElement(id) {
	var e = document.getElementById(id);
	if(e != null) {
		e.style.display = "none";
	}
}

function showElement(id) {
	var e = document.getElementById(id)
	if(e != null) {
		e.style.display = "block";
	}
}
function getContent(conditions, destination) {
	document.getElementById(destination).style.top = 0;
	ajax_loadContent(destination, "load_content.php?"+ conditions);
}
 
function taust(a, change) {
	a.style.backgroundColor = change;
	if(change) {
		a.style.color = '#000000';
	} else {
		a.style.color = '';
	}
}

function showMovie(divId, movie) {
	showElement("show_"+ divId);
	showElement("movie_"+ divId);
	hideElement("image_"+ divId);
	var so = new SWFObject('video.swf', 'movie_'+ divId, '352', '288', '6', '#ffffff');
	so.addVariable('filePath', 'uploads/documents/'+ movie);
	so.addParam('scale', 'noscale');
	so.write('play_movie_'+ divId);
}
	
function showPicture(divId, picture) {
	showElement("show_"+ divId);
	showElement("image_"+ divId);
	hideElement("movie_"+ divId);
	document.getElementById("picture_"+ divId).src = "uploads/pictures/"+ picture;
}

function stopPlay(divId) {
	var so = new SWFObject('video.swf', 'movie_'+ divId, '352', '288', '6', '#ffffff');
	so.addParam('scale', 'noscale');
	so.write('play_movie_'+ divId);
}

