/* 
 * Formular füllen und Leeren 
 */
function remove(id, b)
{
	if(document.getElementById(id).value == b) 
	{ 
		document.getElementById(id).value = ""; 			
	}
}

function check(id, b) 
{
	if(document.getElementById(id).value == "") 
	{ 
		document.getElementById(id).value = b; 
	}
}

/*
 * flipArray
 */
function flipArray(id)
{
  if (document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = "";
	}
	else
	{
		document.getElementById(id).style.display = "none";
	}
}

/*
 * closeArray
 */
function closeArray(id)
{
  if (document.getElementById(id).style.display != 'none')
	{
		document.getElementById(id).style.display = "none";
	}
}	

/*
 * imagePopup
 */
function imagePopup(id, width, height) {
  args = 'width='+width+',height='+height+',resizable';
  url = 'index.php?job=showImage&id='+id+'&noclear=1';
  ok = window.open(url,'',args)
}

/*
 * wpPopup
 */
function wpPopup(id, width, height) {
  args = 'width='+width+',height='+height+',resizable';
  url = 'index.php?job=showWallpaper&id='+id+'&width='+width+'&height='+height+'&noclear=1';
  ok = window.open(url,'',args)
}