var galleryWin = null;

var assetCallback = 
{ 
	success: function( obj ) {
		document.getElementById("popup-body").innerHTML = obj.responseText;
		document.getElementById("popup").style.display = "block";
		document.getElementById("tjanster-list").style.display = "none";
	}
}

function openGallery( image, title, caption, height )
{
	var url = "http://reklamservice.zenseo.com/dynamic/gallery.php?image="+image+"&title="+title+"&caption="+caption;
	if (galleryWin)
		galleryWin.document.location = url;
	else
		galleryWin = window.open(url, 'gallery', 'toolbar=0,status=0,menubar=0,width=800'+(height?",height="+(height+200):""));
	
	galleryWin.focus();
}

function openAsset( asset )
{
	var transaction = YAHOO.util.Connect.asyncRequest('GET', '/assets/'+asset, assetCallback, null);
}

function openPopup( show, url )
{
	// Hide or Show the popup
	if (show == false) {
		document.getElementById("popup").style.display = "none";
	} else {
		var comFrame = document.getElementById("com-frame");
		comFrame.src = url;
	}
	
	return true;
}

function closePopup()
{
	document.getElementById("tjanster-list").style.display = "block";
	openPopup(false);
}

function showSWEDMA()
{
	window.open('/swedma.html', 'swedma', 'toolbar=0,status=0,menubar=0,location=0,width=400,height=210');
}