function move(x, y)	{
	var currentMap = document.getElementById("imgMap");
	var currentCoords = currentMap.src;
	currentCoords = currentCoords.substring(currentCoords.lastIndexOf('/')+1, currentCoords.lastIndexOf('.')).split('-');
	
	//alert(currentCoords[0])
	
	var moveToX = (parseInt(currentCoords[0]) + (x*2));
	var moveToY = (parseInt(currentCoords[1]) + (y*2));
	
	top.location.href = "/maps.aspx?x="+moveToX+"&y="+moveToY;
}
