function placeholder()
{
	
}

function bestallningsjobb()
{
	// alert( "beställningsjobb" );	
}

function bildforfragan()
{
	// alert( "bildforfragan" );
}

function openlogin()
{
	w = window.open( "../login/index.php", "loginwindow", "WIDTH=350,HEIGHT=150" );
	w.focus();
	w.opener = this;
}

function closeandreloadparent()
{
	opener.location = opener.location;
	window.close();
}

function openuserform()
{
	w = window.open( "../userform/index.php", "userformwindow", "WIDTH=300,HEIGHT=300" );
	w.focus();
}

function openkeywordeditor( id )
{
	w = window.open( "keywordeditor.php?id="+id, "keywords"+id, "WIDTH=600,HEIGHT=500,RESIZABLE" );
	w.focus();
}

function openphotographers()
{
	w = window.open( "photographers.php", "photographers", "WIDTH=450,HEIGHT=500,RESIZABLE,SCROLLBARS" );
	w.focus();
}

function openallimages()
{
	w = window.open( "../search/popup_all.php", "allhits", "WIDTH=600,HEIGHT=450,RESIZABLE,SCROLLBARS" );
	w.focus();
}

function deleteimage(nn)
{
	if( confirm( "Är du säker på att du vill ta bort den här bilden? detta kan inte ångras.") == 1 )
	{
		location.href = '/search/keywordeditor.php?id='+nn+'&delimage=1';
	}
}



