function makevisible(cur,which)
{
	if (which==0)
		cur.filters.alpha.opacity=100
	else
		cur.filters.alpha.opacity=40
}

function PopWindow2(str)
{
	window.open(str,'stadir_popup','width=150,height=300,top=200,left=300');
}

function PopWindow(str)
{
	window.open(str,'gogn_popup','width=350,height=300,top=200,left=300, resizable=yes, scrollbars=yes');
}
function PopWindowGogn(str)
{	
	window_features = 'status=no, toolbar=no, menubar=no, location=no, ';
	window.open(str,'gogn',window_features);
}
function view_image(the_title, the_source, the_height, the_width, the_text) 
{
	window_url = '../adminimages/img.asp?page_title=' + the_title + '&image_src=' + the_source + '&the_text=' + the_text;
	window_arguments = '';
	window_features = 'height=' + the_height + ', width=' + the_width + 'status=no, toolbar=no, menubar=no, location=no, ';
	window.open(window_url, window_arguments, window_features);
}
function view_flugeldar(the_title, the_source, the_height, the_width, the_text) 
{
	window_url = the_source;
	window_arguments = '';
	window_features = 'height=' + the_height + ', width=' + the_width + 'status=no, toolbar=no, menubar=no, location=no, ';
	window.open(window_url, window_arguments, window_features);
}
function open_image(title, id, the_height, the_width) 
{
	window_url = '../adminimages/img.asp?title=' + title + '&image_id=' + id;
	window_arguments = '';
	window_features = 'height=' + the_height + ', width=' + the_width + 'status=no, toolbar=no, menubar=no, location=no, ';
	window.open(window_url, window_arguments, window_features);
}
