// JavaScript Document

function mapEdit(cat, id)
{
	
	window.open('/mapedit/show/cat/'+cat+'/id/'+id, 'ipow_mapEditWin', 'width=800, height=600');
	
	return true;
}



function launchMap()
{
	window.open('/map/show/', 'ipow_map', 'width=960, height=480, resize=no, scrollbars=no');
	
}


function launchMMEdit(cat, id, destCat)
{
	window.open('/mmedit/show/cat/'+cat+'/id/'+id+'/destcat/'+destCat , 'ipow_mmedit', 'scrollbars=yes,width=400px,height=700px;');
}


function launchImageEdit(url)
{
	imageEdit = window.open(url, 'imageEdit', 'scrollbars=yes,width=1020px,height=740px;');
	imageEdit.focus();
}

function closeLaunched()
{
	window.opener.location.href = window.opener.location.href;
	window.close();
	
}