function showHint(rid) {
	var left = (document.body.clientWidth - 900) / 2;

	if( document.getElementById("hintTableBG") ) {
		document.getElementById("hintTableBG").style.height = document.getElementById("wrapper").clientHeight + 'px';
		document.getElementById("hintTableBG").style.display = '';	
	}
	
	$.ajax({
		type: "GET",
		url: "inc.ajax.step1.description.php",
		data: "rid="+parseInt(rid),
		success: function(out){
		
			if( document.getElementById("hintTable") ){
				document.getElementById("hintTable").style.width = '900px';
				document.getElementById("hintTableContent").style.height = '600px';
				$("#hintTableContent").html("<img src='/i/close_friend.png' onClick='hideHint()' alt='Aizvērt' style='cursor:pointer; float:right; margin:0px 0px 5px 5px;'/>"+out);
				$("#hintTable").show("slow");
				document.getElementById("hintTable").style.left = left+'px';
				document.getElementById("hintTable").style.top = '150px';
				
			}

		}
	});
	addHandlerOnEscape(hideHint);
}

function addHandlerOnEscape(handler){
	$(document).keyup(function(e){
		if (e.keyCode==27) handler();
	});
}

function hideHint() {
	if( document.getElementById("hintTable") ){
		document.getElementById("hintTableBG").style.display = 'none';
		document.getElementById("hintTable").style.display = 'none';
	}
}

window.onload=function(){
	tbody = document.getElementsByTagName("body")[0];
	tbody.innerHTML +=  '<div onClick="hideHint()" id="hintTableBG" style="display:none; z-index: 1110; width:100%; position:absolute; top:0px; left:0px; filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75; background-color:#FFF">&nbsp;</div><table id="hintTable" style="display:none; position:absolute; z-index:1111; width:900px;" cellpadding=0 cellspacing=0 border=0><tr><td width=5><img src="/i/crn_lt.gif" /></td><td width=890 bgcolor="#E9E9E9"><img src="/i/_.gif" /></td><td width=5><img src="/i/crn_rt.gif" /></td></tr><tr><td bgcolor="#E9E9E9"><img src="/i/_.gif" /></td><td bgcolor="#E9E9E9"><div style="padding:15px; height:600px; '+(window.opera?' overflow:auto;':' overflow-y:scroll;')+'" id="hintTableContent">...</div></td><td bgcolor="#E9E9E9"><img src="/i/_.gif" /></td></tr><tr><td><img src="/i/crn_lb.gif" /></td><td bgcolor="#E9E9E9"><img src="/i/_.gif" /></td><td><img src="/i/crn_rb.gif" /></td></tr></table>';
}





function showDraugam() {
	var left = (document.body.clientWidth - 500) / 2;

	if( document.getElementById("hintTableBG") ) {
		document.getElementById("hintTableBG").style.height = document.getElementById("wrapper").clientHeight + 'px';
		document.getElementById("hintTableBG").style.display = '';	
	}
	
	$.ajax({
		type: "POST",
		url: "inc.ajax.sutit_link_draugiem.php",
		data: "url="+window.location.href,
		success: function(out){
		
			if( document.getElementById("hintTable") ){
				document.getElementById("hintTable").style.width = '500px';
				document.getElementById("hintTableContent").style.height = '200px';
				$("#hintTableContent").html("<img src='/i/close_friend.png' onClick='hideHint()' alt='Aizvērt' style='cursor:pointer; float:right; margin:0px 0px 5px 5px;'/>"+out);
				$("#hintTable").show("slow");
				document.getElementById("hintTable").style.left = left+'px';
				document.getElementById("hintTable").style.top = '150px';
				
			}

		}
	});
	addHandlerOnEscape(hideHint);
}


function showGalleryForm(parent) {
	var left = (document.body.clientWidth - 900) / 2;

	if( document.getElementById("hintTableBG") ) {
		document.getElementById("hintTableBG").style.height = document.getElementById("wrapper").clientHeight + 'px';
		document.getElementById("hintTableBG").style.display = '';	
	}
	
	$.ajax({
		type: "GET",
		url: "inc.ajax.new_gallery_form.php",
		data: "parent="+parseInt(parent),
		success: function(out){
			
			if( document.getElementById("hintTable") ){
				document.getElementById("hintTable").style.width = '900px';
				document.getElementById("hintTableContent").style.height = '600px';
				$("#hintTableContent").html("<img src='/i/close_friend.png' onClick='hideHint()' alt='Aizvērt' style='cursor:pointer; float:right; margin:0px 0px 5px 5px;'/>"+out);
				$("#hintTable").show("slow");
				document.getElementById("hintTable").style.left = left+'px';
				document.getElementById("hintTable").style.top = '150px';
				
			}

		}
	});
	addHandlerOnEscape(hideHint);
}

